System.Web.UI.WebControls.BaseValidator.RegisterExpandoAttribute C# (CSharp) Method

RegisterExpandoAttribute() private method

private RegisterExpandoAttribute ( string controlId, string attributeName, string attributeValue, bool encode ) : void
controlId string
attributeName string
attributeValue string
encode bool
return void
		internal void RegisterExpandoAttribute (string controlId, string attributeName, string attributeValue, bool encode) {
			if (Page.ScriptManager != null)
				Page.ScriptManager.RegisterExpandoAttributeExternal (this, controlId, attributeName, attributeValue, encode);
			else
				Page.ClientScript.RegisterExpandoAttribute (controlId, attributeName, attributeValue, encode);
		}
#endif