How display MessageBox in aspx-page?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Alexander Vasilevsky

    How display MessageBox in aspx-page?

    How display MessageBox in aspx-page?

    http://www.alvas.net - Audio tools for C# and VB.Net developers


  • Scott M.

    #2
    Re: How display MessageBox in aspx-page?

    You have to send the command for that down to the client, since it is the
    client that will be rendering the page. Since JavaScript is the standard
    scripting language that all clients understand, you need to send the
    JavaScript alert() command to the client.

    Response.Write( "alert('You r message here.')") would do it.


    "Alexander Vasilevsky" <mail@alvas.net wrote in message
    news:g74glj$23a q$1@behemoth.vo lia.net...
    How display MessageBox in aspx-page?
    >
    http://www.alvas.net - Audio tools for C# and VB.Net developers
    >
    >

    Comment

    • Mark Rae [MVP]

      #3
      Re: How display MessageBox in aspx-page?

      "Alexander Vasilevsky" <mail@alvas.net wrote in message
      news:g74glj$23a q$1@behemoth.vo lia.net...
      How display MessageBox in aspx-page?



      --
      Mark Rae
      ASP.NET MVP


      Comment

      • HillBilly

        #4
        Re: How display MessageBox in aspx-page?

        There is no native MessageBox for web development. We have to use
        client-side script and HTML. The easiest way out?

        //JavaScript
        alert('Hello World');


        You don't by any chance have any documentation naming and comparing the
        sound files distributed with the various Windows OS releases do you? For no
        good reason I can think of the Vista release has renamed and relocated the
        folders and all of the sound files.


        "Alexander Vasilevsky" <mail@alvas.net wrote in message
        news:g74glj$23a q$1@behemoth.vo lia.net...
        How display MessageBox in aspx-page?
        >
        http://www.alvas.net - Audio tools for C# and VB.Net developers
        >
        >

        Comment

        Working...