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

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top