Raising Javascript Event in ASP.NET user control
http://stackoverflow.com/questions/389450/raising-javascript-events-in-asp-net-user-control
Server Side Method()
{
Server side code...
this.Controls.Add(new LiteralControl(""));
}
This will execute the server side code and print the document next. We can even call this at the beginning/end of Page_load or after some server code is executed.
No comments:
Post a Comment