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

MSGBOX - Permission Denied -> Need help

Status
Not open for further replies.

jdiscuss

IS-IT--Management
Mar 28, 2002
4
US
Hello Gurus,

I am new to this group as well as to ASP.

The msgbox code as follows gives an error as 'Permission Denied' in Windows 2000 with IE6.0. Is there anything that I need to do?

Dim UrVar
Dim UrVar = MsgBox("Hello World",6,"Msgbox title")

Please help me out.

Thanks,
Venkat

 
Are you writing this VBScript on the client side or server side? MsgBox is a client side script, so will not work server side. So if your code is contained within <% %>, you will not be able to use MsgBox.

If you are trying to check values server side and want to be able to see what variables contain, Response.write is your best bet.

<%
Response.write(&quot;Hello world&quot;)
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top