How to call a function when combobox changes?
Hi,
I'm trying to do something and cannot find out how so hopefully someone can help.
I have a combobox in my ASP page. When the user makes a selection in it I need to change the value of a session variable. I know I could make the page reload passing a value as a form and loading it that way. Is there a way I can just call a function in my ASP page and have it set the session variable instead so the page does not have to reload?
Thanks!
Warren
Re: How to call a function when combobox changes?
Not in ASP as it has already been loaded, but you could use Javascript and set a cookie. In that case though you would also need to use cookies in the ASP for that variable also.