asptoday_discuss thread: hide querystring
Message #1 by "Juraj Kalosi" <jurinoasp@p...> on Tue, 29 Jan 2002 09:27:25
|
|
Hello,
is there some way how to hide the querystring (or it's part) by changing
the page in the top frame by clicking the link? (I don't want to use the
form post method in this case)
Thanks.
Message #2 by "Dmitry Brook" <brook74@h...> on Tue, 29 Jan 2002 09:32:44 +0000
|
|
Use javascript:myScript() instead of full query string as value of href
attribute.
Dima.
>From: "Juraj Kalosi" <jurinoasp@p...>
>Reply-To: "ASPToday Discuss" <asptoday_discuss@p...>
>To: "ASPToday Discuss" <asptoday_discuss@p...>
>Subject: [asptoday_discuss] hide querystring
>Date: Tue, 29 Jan 2002 09:27:25
>
>Hello,
>is there some way how to hide the querystring (or it's part) by changing
>the page in the top frame by clicking the link? (I don't want to use the
>form post method in this case)
>Thanks.
>
_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com
Message #3 by "Dmitry Zakharov" <brook74@h...> on Tue, 29 Jan 2002 12:16:05
|
|
function HRefReplacment(var){
//if you want not to allow Navigation (Back&Forward)
document.location = "Page.asp?ID=" + var
//if you want to allow Navigation (Back&Forward)
document.navigate("Page.asp?ID=" + var);
}
|