adding query string to request

  • Thread starter Thread starter TomislaW
  • Start date Start date
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
 
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

Back
Top