Hi
I have the following which is triggered with an onChange on a combi box (id= aloc) in a form.
I'm expecting the page to be reloaded but the URL to have an additional QueryString of &A= and then the new value of the changed combi box.
For some reason its not working.
Also... would I get several (e.g. &A=valuea&A=valueb&A=valuec) if the combi box is changed several times. Would the Request.QueryString take the first or last value of A?
Is there a better way... should I use session?
Any help aperetiated.
I have the following which is triggered with an onChange on a combi box (id= aloc) in a form.
Code:
function AlocChange()
{
window.navigate(location.href & "&A=" & getElementById('aloc').value)
}
I'm expecting the page to be reloaded but the URL to have an additional QueryString of &A= and then the new value of the changed combi box.
For some reason its not working.
Also... would I get several (e.g. &A=valuea&A=valueb&A=valuec) if the combi box is changed several times. Would the Request.QueryString take the first or last value of A?
Is there a better way... should I use session?
Any help aperetiated.