|
-
Mar 18th, 2002, 09:11 AM
#1
Thread Starter
Addicted Member
ASP.NET Form Size
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.
-
Mar 18th, 2002, 02:56 PM
#2
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.
-
Mar 20th, 2002, 10:09 AM
#3
Thread Starter
Addicted Member
Let me clarify
What I really need is to show the status of a process. Like a progress bar. or like this:
Loading...
Processing...
finished...
-
Mar 20th, 2002, 01:54 PM
#4
Hyperactive Member
Response.Write "Loading"
'Loading code goes here
Response.write "Processing"
'Processing code here
Response.write "Finished"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|