how do I create a pop up window in ASPX.CS?
-
how do I create a pop up window in ASPX.CS? For situations out of my control. The pop up window, is the fastest way I can debug the app I have online. I tried this: Help.ShowPopup(this, "Testing ...", new Point(100, 100)); and it threw an error. I believe it was a "500 Error". What am I doing wrong? Since I am unable to comple and step through the code, it is difficult to find out and it ie especially complicatated because the vehicle i intent do tuse to debug is what is crashnig.
-
how do I create a pop up window in ASPX.CS? For situations out of my control. The pop up window, is the fastest way I can debug the app I have online. I tried this: Help.ShowPopup(this, "Testing ...", new Point(100, 100)); and it threw an error. I believe it was a "500 Error". What am I doing wrong? Since I am unable to comple and step through the code, it is difficult to find out and it ie especially complicatated because the vehicle i intent do tuse to debug is what is crashnig.
When you say popup i assume you mean a message box or an alert, well there is actually no way you can do that from the server(Unless you call the script from the server) side, the only way is for you to use javascript. I would advise you use jquery than the regular javascript alert. And also the popup won't work if javascript is disabled in the browser so if it's just messages you want to display i would advise you use labels.
-
how do I create a pop up window in ASPX.CS? For situations out of my control. The pop up window, is the fastest way I can debug the app I have online. I tried this: Help.ShowPopup(this, "Testing ...", new Point(100, 100)); and it threw an error. I believe it was a "500 Error". What am I doing wrong? Since I am unable to comple and step through the code, it is difficult to find out and it ie especially complicatated because the vehicle i intent do tuse to debug is what is crashnig.