Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Message Box

Status
Not open for further replies.

davman2002

Programmer
Nov 4, 2002
75
US
Can I generate a message box that can be displayed on a web page via ASP? Can you provide an example?
 
can you tell it's time to go to sleep
I posted the forum number [lol]

faq333-3048 _________________________________________________________
for the best results to your questions: FAQ333-2924
Is your question a most FAQ?? Find out here FAQ333-3048
 
Hi

You can use this:
<script language=&quot;VBScript&quot;>
MsgBox &quot;Hello World.&quot;, 64, &quot;Warning!&quot;
</script>

Or:

<Script>
alert(&quot;Hello World&quot;)
</Script>

Cheers
 
Strictly speaking, shiggyshag's examples are not ASP - they are using client-side script.

Remember the first VBScript example will only work on IE. the second javascript example should work on all browsers. --James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top