I have 2 links
<li class="active">
<a href="<%#CurrentSearchUrl%>"><span>Current search Page
</span></a>
<li><a href="<%#CurrentSearchUrlParam%>"><span>Add param </span>
</a>
in the Page_Load
CurrentSearchUrl = Request.Url.AbsoluteUri;
CurrentSearchUrlParam = Request.Url+"&discount=1";
param is added but url is not correct my current url is
http://localhost:1067/search/default.aspx?q=test
I want to add one parameter, the desired result should be
http://localhost:1067/search/default.aspx?q=test&discount=1
Thanks in advance