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?
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?
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