Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > alert or message box?

Reply
Thread Tools

alert or message box?

 
 
monika
Guest
Posts: n/a
 
      09-25-2003
I am not clear ... whether to use alert of JavaScript or messagebox of
VBScript in ASP. But what I want is that when a user has some error I want
to display a pop-up kind of a thing saying "you have not entered all the
values" ... and when he click "ok" then he should be directed to the same
page where he was entering the values. I tried this but in my case I am just
being redirected to the page ..and my message box in not being popped up!

here is my code:
<%
DIM RSA
DIM QUERY1
DIM RSA2
DIM QUERY2
DIM Conn
dim adCmdText
dim stAge

session("newStdId") = Request.form("stdID")
session("newStdName") = Request.form("stdName")
session("newStdUserName") = Request.form("stdUserName")
session("newStdPassword") = Request.form("stdPassword")
session("newStdAge") = Request.form("stdAge")

StAge = Request.form("stdAge")
adCmdText = 1
'create and open database connection
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "dsn=school"

'create commad object
set objCmd = server.createobject("adodb.command")

If Request.form("newStudent") = "Click to save details of new student" then
If Request.form("stdname") <>"" and Request.form("stdUsername") <> "" and
Request.form("stdpassword")<> "" and Request.form("stdAge")<> "" then
Set RSA2 = Server.CreateObject("ADODB.Recordset")
QUERY2 = "SELECT student_name from student_info where
student_username='"&Request.form("stdUsername")&"' "
RSA2.open QUERY2, "dsn=school"
if RSA2.EOF then
QUERY1 = "INSERT INTO student_info (student_name,student_username,
student_password,student_age) VALUES
('"&Session("newStdName")&"','"&Session("newStdUse rName")&"','"&Session("New
StdPassword")&"',"&Request.form("stdAge")&")"
set objCmd.ActiveConnection = Conn
objCmd.CommandText = Query1
objCmd.CommandType = adCmdText
'execute the command
objCmd.Execute
response.write "<font color=#000080 size=6>" & "Student details have
been saved!"
else
response.write "<font color=#000080 size=6>" & "A student by the same
username exists! Please create another username."
end if
'response.write session("newStdName") "ID is: "
else
%>
<SCRIPT language="vbscript">
msgbox("YOUR HAVE NOT ENTERED ALL THE VALUES")
</SCRIPT>
<%
Response.Redirect("createStudUser.asp")
End If
end if
'close and dereference database objects
set objCmd = nothing
conn.close
set conn = nothing

%>
<html>
<head>

<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body BGCOLOR="pink">
</body>
<html>


 
Reply With Quote
 
 
 
 
Adrienne
Guest
Posts: n/a
 
      09-25-2003
Gazing into my crystal ball I observed "monika" <>
writing in news::

> I am not clear ... whether to use alert of JavaScript or messagebox of
> VBScript in ASP. But what I want is that when a user has some error I
> want to display a pop-up kind of a thing saying "you have not entered
> all the values" ... and when he click "ok" then he should be directed
> to the same page where he was entering the values. I tried this but in
> my case I am just being redirected to the page ..and my message box in
> not being popped up!


That's because you're doing something server side that needs to be done
client side.

This is what I do:

Form.asp:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Fill out form</title>
<%
dim required
dim message
dim name
dim email

required = request.querystring("required")
name = request.querystring("name")
email = request.querystring("email")

if required <> "" then
select case required
case "name"
message = "Name is required"
case "email"
message = "Email is required"
end select

if message <> "" then
message = "<div style='font-weight:bold; color:red'>" & message &
"</div>"
<script type="text/javascript">
<!--
alert('<%=message%>');
//-->
</script>
end if
end if
%>
</head>
<body>
<%=message%>
<form id="form" method="post" action="form2.asp">
<fieldset><legend>* Indicates Required</legend>
<label for="name">Name: * </label> <input type="text" name="name"
id="name" value="<%=name%>" /><br />
<label for="email">Email: *</label> <input type="text" name="email"
id="email" value="<%email%>" /><br />
<input type="submit" value="Submit">
</fieldset>
</form>
</body>

On form2.asp -

<% dim name
dim email
dim required

name = request.form("name")
email = request.form("email")

if name = "" then
required = "name"
elseif email = "" then
requried = "email"
end if

if required <> "" then
response.redirect "form.asp?required=" & required & "&name=" & name &
"&email=" & email
response.end
else
'do whatever your script is supposed to do
end if
%>

Obviously you can do a lot more error checking, loop through request
objects, etc.

>
> here is my code:
><%
> DIM RSA
> DIM QUERY1
> DIM RSA2
> DIM QUERY2
> DIM Conn
> dim adCmdText
> dim stAge
>
> session("newStdId") = Request.form("stdID")
> session("newStdName") = Request.form("stdName")
> session("newStdUserName") = Request.form("stdUserName")
> session("newStdPassword") = Request.form("stdPassword")
> session("newStdAge") = Request.form("stdAge")
>
> StAge = Request.form("stdAge")
> adCmdText = 1
> 'create and open database connection
> Set Conn = Server.CreateObject("ADODB.Connection")
> Conn.Open "dsn=school"
>
> 'create commad object
> set objCmd = server.createobject("adodb.command")
>
> If Request.form("newStudent") = "Click to save details of new student"
> then
> If Request.form("stdname") <>"" and Request.form("stdUsername") <> ""
> and
> Request.form("stdpassword")<> "" and Request.form("stdAge")<> "" then
> Set RSA2 = Server.CreateObject("ADODB.Recordset")
> QUERY2 = "SELECT student_name from student_info where
> student_username='"&Request.form("stdUsername")&"' "
> RSA2.open QUERY2, "dsn=school"
> if RSA2.EOF then
> QUERY1 = "INSERT INTO student_info (student_name,student_username,
> student_password,student_age) VALUES
> ('"&Session("newStdName")&"','"&Session("newStdUse rName")&"','"&Session(
> "New StdPassword")&"',"&Request.form("stdAge")&")"
> set objCmd.ActiveConnection = Conn
> objCmd.CommandText = Query1
> objCmd.CommandType = adCmdText
> 'execute the command
> objCmd.Execute
> response.write "<font color=#000080 size=6>" & "Student details
> have
> been saved!"
> else
> response.write "<font color=#000080 size=6>" & "A student by the
> same
> username exists! Please create another username."
> end if
> 'response.write session("newStdName") "ID is: "
> else
> %>
> <SCRIPT language="vbscript">
> msgbox("YOUR HAVE NOT ENTERED ALL THE VALUES")
> </SCRIPT>
><%
> Response.Redirect("createStudUser.asp")
> End If
> end if
> 'close and dereference database objects
> set objCmd = nothing
> conn.close
> set conn = nothing
>
> %>
><html>
><head>
>
><link rel="stylesheet" href="style.css" type="text/css" /> </head>
><body BGCOLOR="pink"> </body> <html>
>
>
>




--
Adrienne Boswell
Please respond to the group so others can share
http://www.arbpen.com
 
Reply With Quote
 
 
 
 
Tim
Guest
Posts: n/a
 
      09-25-2003
if it is in the asp code, it will run on the server and the client wont see
it.

if it is in the html code that is sent to the client, then 'msgbox' will
only run on IE, 'alert' will run on anything.


Tim


"monika" <> wrote in message
news:...
> I am not clear ... whether to use alert of JavaScript or messagebox of
> VBScript in ASP. But what I want is that when a user has some error I want
> to display a pop-up kind of a thing saying "you have not entered all the
> values" ... and when he click "ok" then he should be directed to the same
> page where he was entering the values. I tried this but in my case I am

just
> being redirected to the page ..and my message box in not being popped up!
>
> here is my code:
> <%
> DIM RSA
> DIM QUERY1
> DIM RSA2
> DIM QUERY2
> DIM Conn
> dim adCmdText
> dim stAge
>
> session("newStdId") = Request.form("stdID")
> session("newStdName") = Request.form("stdName")
> session("newStdUserName") = Request.form("stdUserName")
> session("newStdPassword") = Request.form("stdPassword")
> session("newStdAge") = Request.form("stdAge")
>
> StAge = Request.form("stdAge")
> adCmdText = 1
> 'create and open database connection
> Set Conn = Server.CreateObject("ADODB.Connection")
> Conn.Open "dsn=school"
>
> 'create commad object
> set objCmd = server.createobject("adodb.command")
>
> If Request.form("newStudent") = "Click to save details of new student"

then
> If Request.form("stdname") <>"" and Request.form("stdUsername") <> "" and
> Request.form("stdpassword")<> "" and Request.form("stdAge")<> "" then
> Set RSA2 = Server.CreateObject("ADODB.Recordset")
> QUERY2 = "SELECT student_name from student_info where
> student_username='"&Request.form("stdUsername")&"' "
> RSA2.open QUERY2, "dsn=school"
> if RSA2.EOF then
> QUERY1 = "INSERT INTO student_info (student_name,student_username,
> student_password,student_age) VALUES
>

('"&Session("newStdName")&"','"&Session("newStdUse rName")&"','"&Session("New
> StdPassword")&"',"&Request.form("stdAge")&")"
> set objCmd.ActiveConnection = Conn
> objCmd.CommandText = Query1
> objCmd.CommandType = adCmdText
> 'execute the command
> objCmd.Execute
> response.write "<font color=#000080 size=6>" & "Student details have
> been saved!"
> else
> response.write "<font color=#000080 size=6>" & "A student by the

same
> username exists! Please create another username."
> end if
> 'response.write session("newStdName") "ID is: "
> else
> %>
> <SCRIPT language="vbscript">
> msgbox("YOUR HAVE NOT ENTERED ALL THE VALUES")
> </SCRIPT>
> <%
> Response.Redirect("createStudUser.asp")
> End If
> end if
> 'close and dereference database objects
> set objCmd = nothing
> conn.close
> set conn = nothing
>
> %>
> <html>
> <head>
>
> <link rel="stylesheet" href="style.css" type="text/css" />
> </head>
> <body BGCOLOR="pink">
> </body>
> <html>
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Alert..General Alert?..New Discovery?. =?Utf-8?B?U3BhbW1lcipLaWxsZXI=?= Wireless Networking 0 07-24-2007 03:36 PM
on click in popup window throws alert : need to avoid alert of postdata Ganesh ASP .Net 0 06-29-2007 06:51 AM
How to create a form Alert - Not using Alert Boxes Mersh Java 0 03-13-2007 04:14 PM
Alert Message TB Steve IA Firefox 2 11-10-2004 12:52 AM
ALERT: Virus Scam Alert! Toronto Garage Door Company Computer Support 1 11-18-2003 04:16 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57