472,374 Members | 1,455 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,374 software developers and data experts.

how to display a message box in web application using asp.net?

Hello all,

I am new in asp.net developer,I would like to ask a simple question. how to
display a message box in web application using asp.net?

If I just use

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnOK.Click
MsgBox("please enter the correct user name and password",
MsgBoxStyle.Information, "Failed in login")
End Sub

when it run, it prompt : It is invalid to show a modal dialog or form when
the application is not running in UserInteractive mode. Specify the
ServiceNotification or DefaultDesktopOnly style to display a notification
from a service application.

Anyone can help me to solve this question? Thanks.

Yezanxiong



Jul 21 '05 #1
9 31113
You have to output the JavaScript command to the browser, which is
window.alert(...), I think.

"yezanxiong" <ye********@discussions.microsoft.com> wrote in message
news:39**********************************@microsof t.com...
Hello all,

I am new in asp.net developer,I would like to ask a simple question. how to display a message box in web application using asp.net?

If I just use

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnOK.Click
MsgBox("please enter the correct user name and password",
MsgBoxStyle.Information, "Failed in login")
End Sub

when it run, it prompt : It is invalid to show a modal dialog or form when
the application is not running in UserInteractive mode. Specify the
ServiceNotification or DefaultDesktopOnly style to display a notification
from a service application.

Anyone can help me to solve this question? Thanks.

Yezanxiong


Jul 21 '05 #2
<html>
<head>
<script language="C#" runat="server">

void Page_Load( Object sender , EventArgs e )
{

//Form the script that is to be registered at client side.
string ScriptString = "<script language=JavaScript> function
DoClick() {";

ScriptString += "var truthBeTold = window.confirm('Click OK to
continue. Click Cancel to stop.');";
ScriptString += "if (truthBeTold)";
ScriptString += "window.alert('Welcome to MVP World!');";
ScriptString += "else window.alert('Bye from MVP World!');}<";
ScriptString += "/";
ScriptString += "script>";

if(! IsClientScriptBlockRegistered("clientScript"))
{
RegisterClientScriptBlock("clientScript", ScriptString);
}
}

</script>
</head>
<body topmargin="20" leftmargin="10">
<form id="myForm" runat="server">
<input type="button" value="ClickMe" onclick="DoClick()">
</form>
</body>
</html>

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"yezanxiong" <ye********@discussions.microsoft.com> wrote in message
news:39**********************************@microsof t.com...
Hello all,

I am new in asp.net developer,I would like to ask a simple question. how to display a message box in web application using asp.net?

If I just use

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnOK.Click
MsgBox("please enter the correct user name and password",
MsgBoxStyle.Information, "Failed in login")
End Sub

when it run, it prompt : It is invalid to show a modal dialog or form when
the application is not running in UserInteractive mode. Specify the
ServiceNotification or DefaultDesktopOnly style to display a notification
from a service application.

Anyone can help me to solve this question? Thanks.

Yezanxiong


Jul 21 '05 #3
You can also use your own customize messagebox on web by using code
JavaScript Window.showmodal calling some asp
on that asp write this on load
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
' If IsPostBack Then Exit Sub
Dim msgString As String
Dim btnType As String
msgString = Request.QueryString("msgString")
btnType = Request.QueryString("btnType")
lblCaption.Text = msgString
If btnType = "VBOK" Then
btnOk.Text = "OK"
btnCancel.Visible = False
ElseIf btnType = "VBOKCANCEL" Then
btnOk.Text = "OK"
btnCancel.Text = "Cancel"
ElseIf btnType = "VBYESNO" Then
btnOk.Text = "Yes"
btnCancel.Text = "No"
End If
btnOk.Attributes.Add("onclick", "return CheckValue(1)")
btnCancel.Attributes.Add("onclick", "return CheckValue(0)")
End Sub
window.showmodal will return value as per click and you can perform yuor
opration
"yezanxiong" wrote:
Hello all,

I am new in asp.net developer,I would like to ask a simple question. how to
display a message box in web application using asp.net?

If I just use

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnOK.Click
MsgBox("please enter the correct user name and password",
MsgBoxStyle.Information, "Failed in login")
End Sub

when it run, it prompt : It is invalid to show a modal dialog or form when
the application is not running in UserInteractive mode. Specify the
ServiceNotification or DefaultDesktopOnly style to display a notification
from a service application.

Anyone can help me to solve this question? Thanks.

Yezanxiong


Jul 21 '05 #4
Thanks. I add 3 control "lblCaption","btnOK","btnCancel" in the web form, and
copy your code to the page_load, I would like to know how I call
window.showmodal?

Yezanxiong

"RiteshDotNet" wrote:
You can also use your own customize messagebox on web by using code
JavaScript Window.showmodal calling some asp
on that asp write this on load
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
' If IsPostBack Then Exit Sub
Dim msgString As String
Dim btnType As String
msgString = Request.QueryString("msgString")
btnType = Request.QueryString("btnType")
lblCaption.Text = msgString
If btnType = "VBOK" Then
btnOk.Text = "OK"
btnCancel.Visible = False
ElseIf btnType = "VBOKCANCEL" Then
btnOk.Text = "OK"
btnCancel.Text = "Cancel"
ElseIf btnType = "VBYESNO" Then
btnOk.Text = "Yes"
btnCancel.Text = "No"
End If
btnOk.Attributes.Add("onclick", "return CheckValue(1)")
btnCancel.Attributes.Add("onclick", "return CheckValue(0)")
End Sub
window.showmodal will return value as per click and you can perform yuor
opration
"yezanxiong" wrote:
Hello all,

I am new in asp.net developer,I would like to ask a simple question. how to
display a message box in web application using asp.net?

If I just use

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnOK.Click
MsgBox("please enter the correct user name and password",
MsgBoxStyle.Information, "Failed in login")
End Sub

when it run, it prompt : It is invalid to show a modal dialog or form when
the application is not running in UserInteractive mode. Specify the
ServiceNotification or DefaultDesktopOnly style to display a notification
from a service application.

Anyone can help me to solve this question? Thanks.

Yezanxiong


Jul 21 '05 #5
ret_value=window.showModalDialog("FMfetch.asp?Plan tType=",null,'
dialogWidth:300px;
dialogHeight:300px;left:yes;;status:no');
if(typeof(ret_value)!="undefined")
{
if (ret_value==0)
And perform your operation on the basis of 0/1 yes /no
}
"yezanxiong" wrote:
Thanks. I add 3 control "lblCaption","btnOK","btnCancel" in the web form, and
copy your code to the page_load, I would like to know how I call
window.showmodal?

Yezanxiong

"RiteshDotNet" wrote:
You can also use your own customize messagebox on web by using code
JavaScript Window.showmodal calling some asp
on that asp write this on load
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
' If IsPostBack Then Exit Sub
Dim msgString As String
Dim btnType As String
msgString = Request.QueryString("msgString")
btnType = Request.QueryString("btnType")
lblCaption.Text = msgString
If btnType = "VBOK" Then
btnOk.Text = "OK"
btnCancel.Visible = False
ElseIf btnType = "VBOKCANCEL" Then
btnOk.Text = "OK"
btnCancel.Text = "Cancel"
ElseIf btnType = "VBYESNO" Then
btnOk.Text = "Yes"
btnCancel.Text = "No"
End If
btnOk.Attributes.Add("onclick", "return CheckValue(1)")
btnCancel.Attributes.Add("onclick", "return CheckValue(0)")
End Sub
window.showmodal will return value as per click and you can perform yuor
opration
"yezanxiong" wrote:
Hello all,

I am new in asp.net developer,I would like to ask a simple question. how to
display a message box in web application using asp.net?

If I just use

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnOK.Click
MsgBox("please enter the correct user name and password",
MsgBoxStyle.Information, "Failed in login")
End Sub

when it run, it prompt : It is invalid to show a modal dialog or form when
the application is not running in UserInteractive mode. Specify the
ServiceNotification or DefaultDesktopOnly style to display a notification
from a service application.

Anyone can help me to solve this question? Thanks.

Yezanxiong


Jul 21 '05 #6
and pass query string btnType and Message

"yezanxiong" wrote:
Thanks. I add 3 control "lblCaption","btnOK","btnCancel" in the web form, and
copy your code to the page_load, I would like to know how I call
window.showmodal?

Yezanxiong

"RiteshDotNet" wrote:
You can also use your own customize messagebox on web by using code
JavaScript Window.showmodal calling some asp
on that asp write this on load
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
' If IsPostBack Then Exit Sub
Dim msgString As String
Dim btnType As String
msgString = Request.QueryString("msgString")
btnType = Request.QueryString("btnType")
lblCaption.Text = msgString
If btnType = "VBOK" Then
btnOk.Text = "OK"
btnCancel.Visible = False
ElseIf btnType = "VBOKCANCEL" Then
btnOk.Text = "OK"
btnCancel.Text = "Cancel"
ElseIf btnType = "VBYESNO" Then
btnOk.Text = "Yes"
btnCancel.Text = "No"
End If
btnOk.Attributes.Add("onclick", "return CheckValue(1)")
btnCancel.Attributes.Add("onclick", "return CheckValue(0)")
End Sub
window.showmodal will return value as per click and you can perform yuor
opration
"yezanxiong" wrote:
Hello all,

I am new in asp.net developer,I would like to ask a simple question. how to
display a message box in web application using asp.net?

If I just use

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnOK.Click
MsgBox("please enter the correct user name and password",
MsgBoxStyle.Information, "Failed in login")
End Sub

when it run, it prompt : It is invalid to show a modal dialog or form when
the application is not running in UserInteractive mode. Specify the
ServiceNotification or DefaultDesktopOnly style to display a notification
from a service application.

Anyone can help me to solve this question? Thanks.

Yezanxiong


Jul 21 '05 #7
Hi All, May I please follow up with the same question that wasasked previously?
I actually hit the same error message when trying to displaymessagebox.show method in ASP.net. I am wondering what is"Userinteractive mode"? How to set it up? Is is something needto be setup either in web.config of each indivdual webform? Orsomething in security.config?

Thanks all in advance.
Tommy
User submitted from AEWNET (http://www.aewnet.com/)
Jul 21 '05 #8
Yezanxiong,

After searching for the same problem myself, and seeing these complicated
responses, I found my own MUCH simpler answer: Add a label to the page,
instead of using response.write.

Create a sub like so:
Private Sub ShowAlert(ByVal Message As String)
Dim MyAlertLabel As New Label
MyAlertLabel.Text = "<script language='vbscript'>" & _
vbNewLine & "Alert(" & """" & Message & """" & ")" & _
vbNewLine & "</script>"
Page.Controls.Add(MyAlertLabel)
End Sub

This will display an alert box without blanking the screen. Adding the new
label did not change the appearance of the page, in the testing I did. It
behaves just like a message box in VB, you can add the ShowAlert("xxx")
within your code wherever you need it, (like in an If statement), it does
not need to be tied to a submit button. For example, you can make it pop up
when the user types in an invalid value on your form.
One suggestion: You do have to make sure to use "VbCrLf" as a newline
character (instead of "VbNewLine") when creating your message, or it will
cause an error on the page.

--
Christopher W. Douglas
www (dot) douglasweb (dot) com
chris (at) douglasweb (dot) com
"yezanxiong" <ye********@discussions.microsoft.com> wrote in message
news:39**********************************@microsof t.com...
Hello all,

I am new in asp.net developer,I would like to ask a simple question. how to display a message box in web application using asp.net?

If I just use

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnOK.Click
MsgBox("please enter the correct user name and password",
MsgBoxStyle.Information, "Failed in login")
End Sub

when it run, it prompt : It is invalid to show a modal dialog or form when
the application is not running in UserInteractive mode. Specify the
ServiceNotification or DefaultDesktopOnly style to display a notification
from a service application.

Anyone can help me to solve this question? Thanks.

Yezanxiong


Jul 21 '05 #9
Hi,

I did not see this message earlier, In my sample bellow I show you the the
actual messagebox in a webform, I did not see it in this thread (I hope I
did not missed him). It is the "prompt" not the textbox you see in this
sample, that is to set the information in when it is received from the
messagebox. In the way in this sample is now it looksuglier than ugly can
be.
The sample need a button and a textbox on a form.
\\\
Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load
Dim str As String
If Not IsPostBack Then
Dim alertScript As String = _
"<script language=JavaScript>document.all.item('TextBox1'). value
" & _
" = prompt('Give me some text','I hope this helps, Cor');
</script>"
RegisterStartupScript("Startup", alertScript)
Else
str = TextBox1.Text
End If
End Sub
///

I hope this helps a little bit?

Cor
Jul 21 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: ZRexRider | last post by:
This may be an easy question but I've been reading for about a half hour and experimenting without results. I simply want the results of my query to display a specific field that is typed...
1
by: bborden | last post by:
Novice Access programmer here. I would like to display an image using the Toolbox Image object by calling the images file name using: =fPictureFiles(!!,1) in the Picture control. Below...
7
by: c.verma | last post by:
I have a web application. There is a page which has a datagrid on it.The datagrid displays the data that comes from SAP. SAP sends the chinese characters to this grid. Before I display CHinese...
1
by: John | last post by:
Hi everyone, I am a newbee in the .NET world. Please guide me ?? Scenario: I have a master computer, say, m1 in cityA. I have other client PCs in seperate cities, say, cityB, cityC and cityD....
9
by: yezanxiong | last post by:
Hello all, I am new in asp.net developer,I would like to ask a simple question. how to display a message box in web application using asp.net? If I just use Private Sub btnOK_Click(ByVal...
1
by: prabhunew2005 | last post by:
hi all I need to display the message balloon alerting the user about CAPS LOCK key is on when they entering value in password text field. I don't know how to display the message balloon...
7
nirmalsingh
by: nirmalsingh | last post by:
what are the things i shoul import?.. and how could i display a message box in c#? sample code will help me a lot.....
1
by: Susan Harris | last post by:
I have a Windows (NT) service developed in .NET 3.5 (VS2008). I want this service to log messages to a WinForms application that will display it's progress to the user. It has to run under Vista,...
21
by: mukeshrasm | last post by:
Hi I am deleting records from database using checkbox. means only that record will be deleted from database which are selected in checkbox. and before deleting record I am displaying a message...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
1
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
0
by: jack2019x | last post by:
hello, Is there code or static lib for hook swapchain present? I wanna hook dxgi swapchain present for dx11 and dx9.
0
by: F22F35 | last post by:
I am a newbie to Access (most programming for that matter). I need help in creating an Access database that keeps the history of each user in a database. For example, a user might have lesson 1 sent...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.