2012-08-31 144 views
0

我怎樣才能把一個按鈕,服務器端點擊這裏裏面的請求URL的一部分是我的代碼:刪除的request.rawurl一部分

URL:http://localhost:51854/SupportWebsite/Dashboard.aspx?FromForum=T 

NewURL:http://localhost:51854/SupportWebsite/Dashboard.aspx 

我知道我可以使用像刪除和替換字符串屬性,但我不想在我的按鈕點擊結束時使用Responce.Redirect(NewUrl),因爲它將沒有任何意義,爲什麼因爲按鈕確實發回他的默認功能

回答

1

您可以使用Uri.GetLeftPart方法:

string oldUrl = "http://localhost:51854/SupportWebsite/Dashboard.aspx?FromForum=T"; 
Uri uri = new Uri(oldUrl); 
string newUrl = uri.GetLeftPart(UriPartial.Path);