adding query string to request

T

TomislaW

Is it possible to add query string on requested page
e.a.
i have request for index.aspx, but i need index.aspx?language=en
is this possible

tomislaw
 
G

Guest

Yes, you can use

Response.Redirect("index.aspx?language=en")

But instead of adding query string, you might think following logic:

string strLanguage;
If (Request.QueryString.Get("language") == null)
{
strLanguage = "en";
}
else
{
strLanguage = Request.QueryString.Get("language");
}


HTH

Elton Wang
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top