我有2個鏈接如何一個參數添加到當前的URL在C#
<li class="active">
<a href="<%#CurrentSearchUrl%>"><span>Current search Page
</span></a>
<li><a href="<%#CurrentSearchUrlParam%>"><span>Add param </span>
</a>
在Page_Load
CurrentSearchUrl = Request.Url.AbsoluteUri;
CurrentSearchUrlParam = Request.Url+"&discount=1";
參數是添加,但網址是不正確的 我目前的網址是
http://localhost:1067/search/default.aspx?q=test
我想添加一個參數,所需的結果應該是
http://localhost:1067/search/default.aspx?q=test&discount=1
在此先感謝
您正在尋找[查詢字符串](http://stackoverflow.com/questions/19987952/how-to-properly-use-a-querystring- in-net-asp-c) – Wahtever
CurrentSearchUrlParam和CurrentSearchUrlDiscount是不同的。你在頁面上使用了正確的參數嗎? –