G
Guest
Hi all,
I have an aspx page that opens with some parameter (mypage.aspx?idclient=1).
Next, I have a dropdown list on this page that lets select the new value of
parameter idclient. Than I just want to reload the same page with the new
parameter:
response.redirect(mypage.aspx?idclient=" +
mydropdownlist.SelectedValue.ToString)
that makes refresh the page avec "?idclient=2" (for exemple)
Everything is going well, except a little thing: in the URL address of t he
page it is steel shown the old address with old value of parameter idclient
("mypage.aspx?idclient=1"). That means if user clicks on internet explorer
"Refresh button" the page will be re-generated with an old parameter!
Could you advise me how could I change not only the page but also the URL
address to be corresponding to new parameter value?
Thank you very much in advance for code exemple,
Anna
I have an aspx page that opens with some parameter (mypage.aspx?idclient=1).
Next, I have a dropdown list on this page that lets select the new value of
parameter idclient. Than I just want to reload the same page with the new
parameter:
response.redirect(mypage.aspx?idclient=" +
mydropdownlist.SelectedValue.ToString)
that makes refresh the page avec "?idclient=2" (for exemple)
Everything is going well, except a little thing: in the URL address of t he
page it is steel shown the old address with old value of parameter idclient
("mypage.aspx?idclient=1"). That means if user clicks on internet explorer
"Refresh button" the page will be re-generated with an old parameter!
Could you advise me how could I change not only the page but also the URL
address to be corresponding to new parameter value?
Thank you very much in advance for code exemple,
Anna