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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Message Box using ASP

Status
Not open for further replies.

MavrickStl

Programmer
Feb 20, 2001
71
US
Guys,

Does anybody know how to create a message box with Cancel, Yes and No button on it using ASP.

Thanks,

Mav
 
Hi,
<script language=&quot;VBScript&quot;>
msgbox &quot;Text&quot;, vbYesNoCancel
</script>
If you need more information check MSDN with &quot;msgbox constants&quot;.
Hope this helps.
D.
 
Look up 'confirm' in JScript. As a message box will appear on the client, it must be provoked using client side script (not ASP). This usually means writing it in JavaScript, for which the Confirm is available - though it only has Yes/No buttons (I think). (Content Management)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top