views:

4336

answers:

3

I have three values which I have to pass as parameters for e.g., strID, strName and strDate.

I want to redirect these three parameters to another page in Response.Redirect().Can anybody provide me with the correct querystring?

+1  A: 

~mypage.aspx?strID=x&strName=y&strDate=z

AdamRalph
+4  A: 

Hi,

Query String: ?strID=XXXX&strName=yyyy&strDate=zzzzz

before you redirect:

string queryString = Request.QueryString.ToString();

Response.Redirect("page.aspx?"+queryString);

Hope this helps.

Thanks, Ramjee

rAm