How could I respond to the users with a dialog box in ASP.Net?
My specific need is for a dialog box to appear showing the status of a process.
Printable View
How could I respond to the users with a dialog box in ASP.Net?
My specific need is for a dialog box to appear showing the status of a process.
Same as orginal ASP, you cannot popup a messagebox using ASP/....ASP is server side. You would have to use Javascripts alert to show a client side messagebox.
What I really need is to show the status of a process. Like a progress bar. or like this:
Loading...
Processing...
finished...
Response.Write "Loading"
'Loading code goes here
Response.write "Processing"
'Processing code here
Response.write "Finished"