Ask a Question related to ASP, Design and Development.
-
Peter Bassett #1
msgbox title
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
Peter Bassett Guest
-
Fastest way to get a the string between <title> </title>
Hello, I have in my strHtml a html page. so what is the fastest way (with XML Read?) to get the "myValue" between <title>myValue</title> ... -
MsgBox Error
Hi, everyone I use MsgBox("message") function, but error as follows: It is invalid to show a modal dialog or form when the application is not... -
MSGBOX Example
I am trying to get a message box to work in a web form. The code looks right But when I browse the form I get It is invalid to show a modal... -
Grid msgbox?
I found it. private void grd_DeleteCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) {... -
msgbox?
Try adding this code to your Page_Load event: btnSave.Attributes.Add("OnClick", "return confirm('Are you sure you want do save?');"); Good... -
Ray at #2
Re: msgbox title
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
"Peter Bassett" <pbassett2223@comcast.net> wrote in message
news:Xns93D575E2DD99Apbassett2223comcastn@204.127. 204.17...way> 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 aResume> 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> 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
Ray at Guest



Reply With Quote

