Modifying URL using java script
-
Hi All, I want to add query string in the URL using javascript but I don't want to reload or redirect the page. (When I use window.location = "some value", it redirects me to the corresponding page). I also want to access the query string value in my server side code. Please help me. Thanks in Advance Alok...
-
Hi All, I want to add query string in the URL using javascript but I don't want to reload or redirect the page. (When I use window.location = "some value", it redirects me to the corresponding page). I also want to access the query string value in my server side code. Please help me. Thanks in Advance Alok...
Javascript is purely client side. If you want to retrieve data server side, you need a postback. You may however consider AJAX, which will do a postback, but is capable of doing a postback without the entire page reloading. Cheers, Eduard
.: I love it when a plan comes together :. http://www.zonderpunt.nl
-
Javascript is purely client side. If you want to retrieve data server side, you need a postback. You may however consider AJAX, which will do a postback, but is capable of doing a postback without the entire page reloading. Cheers, Eduard
.: I love it when a plan comes together :. http://www.zonderpunt.nl