Messagebox

xsl

Newcomer
Joined
Feb 11, 2003
Messages
1
Location
HK
Hi all,
I am writing a vb web application and I want to send message to user with a popup messagebox. However, I found that msgbox() only support in window form. Is there any other solution?
 
The MessageBox class is also a member of the Windows Forms
namespace. When you're using a Web application, the only way
to show a popup message box is to use client-side JavaScript
or VBScript, and using the alert() or confirm() functions.
 
Back
Top