About Change in Url Address Bar w/o Postback

Hello,

I have a redirect link which redirects towww.mypage/abcd?ID=12. I what to change the url of the address bar to another user friendly name aswww.mypage/abcd/somepage. How can this be done. If needed there may be a reference table that will show the name somepage for the corresponding id "12". I want this to be done after the page is loaded and after changing the url address, i need not want a postback.

Is it possible And if Yes, How?

[644 byte] By [Anoop.H.TVM] at [2008-2-8]
# 1

write similar statement in your web.config and point to page like this www.mypage/SomePage.aspx

and ASP.NET will do the job for you

<urlMappings enabled="true">

<add url="~/SomePage.aspx" mappedUrl="~/www.mypage/abcd?ID=12"/>

</urlMappings>

hope this helps

GalinIliev at 2007-9-10 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...
# 2

Hello,

Thank you fro your reply. But this can be done only in .Net Framework 2.0 / VS 2005.

I need the above to be implemented in .Net Framework 1.1

Anoop.H.TVM at 2007-9-10 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...
# 3

the hard way is to create dummy webpages that just do Server.Transfer("MyParametrizedPage.aspx?Par1=3")

GalinIliev at 2007-9-10 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...