Hi Santosh,
Since the panel is in disable mode, the controls on the panel are not visbile to the user.
and for pop up on the user click on a button you can use the below given code
string strScript = "<script> ";
strScript += "var newWindow = window.showModalDialog('display.aspx", '','dialogHeight: 500px; dialogWidth: 900px; edge: Raised; center: Yes; resizable: Yes; status: Yes;');";
strScript += "</script>";
//Page.RegisterClientScriptBlock("strScript", strScript);
ScriptManager.RegisterStartupScript(this, this.GetType(), "PopupCP", strScript, false);
Thanks
Pavan Kumar
Mark Answer if this fits the need
Santosh.Choudhury, if this helps please login to Mark As Answer. | Alert Moderator