If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Announcement
Collapse
No announcement yet.
Add a parameter via code behind at the link back URL
I'm using my own textbox as search box, as you can see at www.pesmonitor.eu
The button click event is:
Protected Sub btnSearch_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles btnSearch.Click
Response.Redirect("~/Search/Search.aspx?Lang=" & strLang & "&zoom_query=" & tbxSearch.Text)
End Sub
Basically, I need to keep the parameter Lang="..." in the query string when I click on different result pages. The link back URL is Search.aspx, but it does not include the Lang param I need.
Modifying the language file, as follows
Comment