Subscribe to
Posts
Comments

Archive for June, 2006

using System; using System.Text; using System.Web.UI; using System.Web.UI.WebControls; using System.ComponentModel; namespace SocialAnimal.Web.UserControls { /// <summary> /// If ControlToValidate has a value then DependantControl /// must also have a value /// </summary> public class DependantFieldValidator : CustomValidator { private string _dependantControl = null; private bool _showAlertBox = false; [Description(@"If true, will show an alert box if [...]