Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am very beginner With Programming...(unfortunately)

I want to remove Any added QueryString To Address after i get the variables. for example:

www.websiteName.com/page.aspx?a=344&b=233

i will get a and b and after that i want my address to look like this:

(www.websiteName.com) .

"root location".

any help...

thanks.

share|improve this question
Is there any specific reason for which you need to pass parameters in URL(using GET method) when you are using asp.net? – vamyip Oct 4 '10 at 11:00

3 Answers

up vote 2 down vote accepted
var queryString = Request.QueryString;
// Handle querystring, then redirect to root
Response.Redirect("~/");
Response.End();

You will have to reload the page. When changing the URL, you are making another request to the server.

share|improve this answer
But then he will have to handle keeping state for the variables that were passed in, as redirect will reload the page, so, a cookie may be needed. – James Black Oct 4 '10 at 10:50
Thanks for replay..i will do it in PageLoad() event...i don't want to reload the page agin.. – samih Oct 4 '10 at 10:56
You will have to reload the page. When changing the URL, you are making another request to the server. – stigok Oct 4 '10 at 11:13
i want to re-write the url address without nivgating to it!. – samih Oct 4 '10 at 11:17
What you want is impossible, but you could use javascript to handle parameters after a #-sign. This will not make another request. You can get and set these parameters using document.location.hash. – stigok Oct 4 '10 at 11:28
show 5 more comments

I wrote a blog on retrieving the URL of an ASP.Net application. Simply add the page name after the result.

This blog describes how to manipulate the query string to redirect to the same page with different (or no) parameters.

share|improve this answer
thanks for replay... i want to do that without reloading the page.... – samih Oct 4 '10 at 11:05

Why not just use

Request.UserHostName
share|improve this answer
This will get the DNS name of the remote client, not the root path of the web-site. – stigok Oct 4 '10 at 10:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.