msgbox title

P

Peter Bassett

In my ASP script I call Javascript for a msgbox after the user has
submitted the form of their resume information. I saw this example as a way
to get a msgbox onto the client from ASP since server side scripts can't
send a msgbox to a client.

<%
Const DQ = """"
Response.Write("<script language=VBScript>" & "MsgBox " & DQ & "Your Resume
Information Has Been Sent to companyname" & DQ & "</script>")
%>

But the title of the msgbox has "VBScript". Adding a title to the MsgBox
command only appends this.

Am I stuck with this awful text or is there a way to control the complete
title text?

Thanks!
Pete
 
R

Ray at

Although you're response.writing this, it's a client side scripting question
(vbscript, not javascript).

But, fwiw

msgbox "Hi", 1, "Here is the title"

That will still have VBScript in the title though. FOllow up in vbscript
group.

Ray at work
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,902
Latest member
Elena68X5

Latest Threads

Top