Results 1 to 4 of 4

Thread: ASP.NET Form Size

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Aug 2001
    Location
    Pennsylvania
    Posts
    133

    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.

  2. #2
    Banished Cander's Avatar
    Join Date
    Dec 2000
    Location
    Why do you care?
    Posts
    6,913
    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.
    Stack Overflow
    See the features of Visual Studio 2010 and C# 4.0: The 10-4 show on Channel9

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Aug 2001
    Location
    Pennsylvania
    Posts
    133

    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...

  4. #4
    Hyperactive Member thinktank2's Avatar
    Join Date
    Nov 2001
    Location
    Arctic
    Posts
    272
    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
  •  



Click Here to Expand Forum to Full Width