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

how to make an alert message ?

Status
Not open for further replies.

tyris

Programmer
Nov 2, 2000
311
FR
hi all,

i have a webclass application that tests in the VB code someting.

in a normal VB application, you would send a message this way

if (toto=true) then
msgbox("You can't delete this entry")
enf if

in a javascript you would send with :

if (toto== true){
alert("You can't delete this entry");
}

if i want to send an alert in the webpage when the test is done, what must i do?
i mean i can not put the alert in the javascript because the test is done in the
VB code, and if i put a MSGBOX() the message is shown in VB and i want it to br displayed in the navigator. for the moment, as i develop the application i launch my test for VB? but when compiling, will the msgbox act as a alert??
any idea ??
Best regards,
Elise
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top