I have been working on .Net platform for 2 year and right now i am working on DevExpress controls for 6 months. All these control have client-side Events which are under some ClientScript nameSpace of particular control, Which specify ClientInstanceName, methods and properties accessible at client side.
E.g. Button1 is ClientInstanceName
Then Button1.Text is property
and methods like this
Button1.SetValue();
Button1.GetValue();
In ASP.Net Controls, Buttons have ClientClick event that fire before the Server Side Click event.
I have inspected and goggled about this to extend some more client side functionality in asp.net controls. For example: create a ClientInstanceName Property for controls or CheckedChanged event for CheckBox/RadioButton Control.
I have tried somewhat using these MSDN articles:
Injecting Client-Side Script from an ASP.NET Server Control
Working with Client-Side Script
I got much information and idea from these pages to implement/ extend these little more. all are working client side.
`protected override void AddAttributesToRender(HtmlTextWriter writer)
{
base.AddAttributesToRender(writer);
string script = @"return confirm(""%%POPUP_MESSAGE%%"");";
script = script.Replace("%%POPUP_MESSAGE%%",
this.PopupMessage.Replace("\"", "\\\""));
writer.AddAttribute(HtmlTextWriterAttribute.Onclick, script);
}`
Here It is just setting up attribute to the button. but all client side interaction no control from server.
Here is that i want to know:
- How can i implement such functionality to create methods, properties etc on clientSide.
- For a example I am creating a PopControl as in the above code snippet same behavior as like Ajax ModalPopupExtender That have OK Button related properties.
Ajax Controls can be directed to perform work from server side code e.g.
Popup1.show();How can i do this with such client enabled controls implemented controls as windows do.
I am doing learning on Ajax Controls creation but i do not want to use ScriptManager or depend on another control. just some extension to standard controls.
I am expecting for ideas and implementation methods for such functionality.