Apr 10, 2003 #1 aldrin001 Programmer Mar 3, 2003 5 BE i created a page with a back button. now i wanted to show a msgbox if you click on the button. but i always got this error: Microsoft VBScript runtime error '800a0046' Permission denied: 'MsgBox' it's a server side web page that is buffered on the server.
i created a page with a back button. now i wanted to show a msgbox if you click on the button. but i always got this error: Microsoft VBScript runtime error '800a0046' Permission denied: 'MsgBox' it's a server side web page that is buffered on the server.
Apr 24, 2003 #2 MerlinB Programmer Dec 14, 2000 399 GB You cannot have a message box in server side code, only client side. If you want to cause client-side code to execute from a DTC button click, then use the onbeforeserverevent event. There are loads of examples in Tek-Tips - do a search. http://www.corporateinternet.com Upvote 0 Downvote
You cannot have a message box in server side code, only client side. If you want to cause client-side code to execute from a DTC button click, then use the onbeforeserverevent event. There are loads of examples in Tek-Tips - do a search. http://www.corporateinternet.com