How to open a window control from server-side?
Q:
How to open a window control from server-side?
A:
There is a way to send JavaScript, use the RegisterClientScriptBlock at server-side.
After done with process at server-side you may add something like bellow:
System.Web.UI.ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Open_Window", "myWindow.Open();", true);
|