Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Javascript and asp

Status
Not open for further replies.

PeteCan

Programmer
Jan 15, 2002
60
0
0
GB
I have an asp page which has a dropdown box in it. Using the onchange event I want to decide whether to do something or not.
The event calls this javascript

<SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
<!--

function HandleChange() {
var list = document.form1.seltest;
var listValue= list.options[list.selectedIndex].value;
}
//-->
</SCRIPT>
 
do something or not

Can you be just a tad bit more detail in something [wink]

___________________________________________________________________
[sub]
The answer to your ??'s may be closer then you think. faq333-3811
Join the Northern Illinois/Southern Wisconsin members in Forum1064
[/sub]
 
PeteCan,

Are you trying to make a client-side script or an ASP script?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top