472,340 Members | 1,743 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

can an event be controled in classical ASP?

Hi all,
I guess this probably a very silly question. I am not sure if this can be
done in classical asp. A button has to be clicked if a selection in drop
down list has been changed. If not, a pop up message pops and reminds the
user you need to click the button before continue. Can this be done in some
ways???
Thank you!
--
Betty
Feb 20 '07 #1
5 1931
c676228 wrote:
Hi all,
I guess this probably a very silly question. I am not sure if this
can be done in classical asp. A button has to be clicked if a
selection in drop down list has been changed. If not, a pop up
message pops and reminds the user you need to click the button before
continue. Can this be done in some ways???
Thank you!
--
Not in asp. ASP is server-side technology. If your question concerns
buttons clicked by users to trigger client-side (browser) events, then
you are no longer in the realm of ASP. A client-side scripting group
such as .scripting.jscript will likely get you more help.

Having said that, you need to think more about your sequence of events.
At what point do you want to have the message appear? From your question
it appears that a user has to select an item and then click a button.
What does the user need to do to trigger the error message?

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Feb 20 '07 #2
Hello Betty,

I'm wondering whether you're wantting to perform such event/checking every
time before the user submit the form/page or do you want to do such
event/checking whenever the user has changed the selected item in
dropdownlist(html select)?

In both cases, you need to use client side script code. For the first case,
you can add a script handler for html form's onsubmit event. e.g.

<form onsubmit="xxx()">

and in that handler, you can check whether the dropdownlist(or other
element)'s value has been changed(you need to also keep the original value
for compare in the page), and then determine whether to continue the submit
or cancel it and display a alert dialog.
e.g.

=========================
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<script type="text/javascript">
function form_submit()
{
if(document.getElementById("flag").value == "1")
{

return true;
}
else
{
alert("need set flag...");
return false;
}
}

function set_flag()
{
document.getElementById("flag").value = "1";

alert(document.getElementById("flag").value);
}
</script>
</head>
<body>
<form id="form1" action="" onsubmit="return form_submit();">
data: <input type="text" value="test" /><br />
<input type="button" value="set flag" onclick="set_flag();" />

<input id="flag" type="hidden" value="0" />

<input type="submit" value="submit button" />

</form>
</body>
</html>
======================================
if it is the second case, you just need to add "onchange" client-side event
for the dropdownlist and do the checking(whether the button has been
clicked) and show alert.

Does this help?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Feb 21 '07 #3
Bob and Steven,
Thank you both for your help. Steven, your post is very helpful.
My case is the second. Whenever there is a change in any dropdownlist
fields, the update button needs to be clicked for new quote. Based on your
idea, I can always
set original values in session variables and when submit button is clicked,
I can check if the request("filedname") is the same as each session variable
or not, if there is any difference and the flag value is still 0 and alert
user the "update" button needs to be clicked, if the flag=1 then continue...
the only thing I don't like my part is if there are many fields, that means
I need to use many session variables. I am afraid if too many users abandon
in the middle of processing, I could be in trouble. I usually abondon the
session right after a successful transaction, can you give me a
recommendation how to guarantee a session is removed even a user abandons it
in the middle? or do you have any other suggestion?
Thank you
--
Betty
"Steven Cheng[MSFT]" wrote:
Hello Betty,

I'm wondering whether you're wantting to perform such event/checking every
time before the user submit the form/page or do you want to do such
event/checking whenever the user has changed the selected item in
dropdownlist(html select)?

In both cases, you need to use client side script code. For the first case,
you can add a script handler for html form's onsubmit event. e.g.

<form onsubmit="xxx()">

and in that handler, you can check whether the dropdownlist(or other
element)'s value has been changed(you need to also keep the original value
for compare in the page), and then determine whether to continue the submit
or cancel it and display a alert dialog.
e.g.

=========================
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<script type="text/javascript">
function form_submit()
{
if(document.getElementById("flag").value == "1")
{

return true;
}
else
{
alert("need set flag...");
return false;
}
}

function set_flag()
{
document.getElementById("flag").value = "1";

alert(document.getElementById("flag").value);
}
</script>
</head>
<body>
<form id="form1" action="" onsubmit="return form_submit();">
data: <input type="text" value="test" /><br />
<input type="button" value="set flag" onclick="set_flag();" />

<input id="flag" type="hidden" value="0" />

<input type="submit" value="submit button" />

</form>
</body>
</html>
======================================
if it is the second case, you just need to add "onchange" client-side event
for the dropdownlist and do the checking(whether the button has been
clicked) and show alert.

Does this help?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Feb 23 '07 #4
Hello Betty,

Thanks for your reply.

So I think your further question here is how to avoid using many session
variables to mark the flag of those input fields or status. I think this is
just like how to avoid do the checking at server-side. As mentioned in my
first approach, you can use "onsubmit" event of html <formto do
client-side validation and cancel the submit if necessary. For example,
whenever the update button is clicked, you can change a html input hidden
field in your page's cilent-side markup. Then, your client-side script can
check both the value changed (on the dropdownlist) and whether the update
button is clicked(from the hiddenfield). And when all rquirement meet, you
let the page submit to server-side and process it, after successful
processing, you need to reset that hiddenfield(for flag whether update
button has been clicked) to the initial value. How do you think of this?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.


Feb 26 '07 #5
Thank you, Steven. You are absolutely right. Thank you so much for the help.
--
Betty
"Steven Cheng[MSFT]" wrote:
Hello Betty,

Thanks for your reply.

So I think your further question here is how to avoid using many session
variables to mark the flag of those input fields or status. I think this is
just like how to avoid do the checking at server-side. As mentioned in my
first approach, you can use "onsubmit" event of html <formto do
client-side validation and cancel the submit if necessary. For example,
whenever the update button is clicked, you can change a html input hidden
field in your page's cilent-side markup. Then, your client-side script can
check both the value changed (on the dropdownlist) and whether the update
button is clicked(from the hiddenfield). And when all rquirement meet, you
let the page submit to server-side and process it, after successful
processing, you need to reset that hiddenfield(for flag whether update
button has been clicked) to the initial value. How do you think of this?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.


Mar 9 '07 #6

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

Similar topics

45
by: Joh | last post by:
hello, i'm trying to understand how i could build following consecutive sets from a root one using generator : l = would like to produce :...
0
by: Andy Read | last post by:
Hello all, I have the requirement to produce source code that produces an object hierarchy. Example: Root | Folder 1
18
by: Christopher W. Douglas | last post by:
I am writing a VB.NET application in Visual Studio 2003. I have written a method that handles several events, such as closing a form and changing...
8
by: Mark | last post by:
Hi, I'm looking for some ideas on how to build a very simple Event processing framework in my C++ app. Here is a quick background ... I'm...
13
by: Charles Law | last post by:
Mr "yEaH rIgHt" posted the following link about a week ago in answer to my question about removing event handlers. >...
8
by: Jerry | last post by:
Hi, My app is controled by a treeview. Each node brings a subform for input and calculations to the front. The subforms are loaded as controls...
10
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all, Recently, a couple of our clients have asked if it is possible for them to pass data in xml format to our server program for processing it....
1
by: xavierselvaraj | last post by:
I want to handle errors that occur in my classical asp pages in global.asa and redirect them to custom error page. This can be accomplished in...
1
ashitpro
by: ashitpro | last post by:
Hi there, I am working on a distributed service detection project, written in C/C++ Platform is Linux. Each system under network has mysql...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
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...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...

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.