1.aspx:
First page the values i am sending to second page using Query string
Response.Redirect("~/RedirectionURL.aspx?BatchID=" + Bno + "&ClientID=" + Cno + "&TagId=" + Tno);
2.aspx:
This 3 values retriving in second page
int Bid = Convert.ToInt32(Request.QueryString.Get("BatchID"));
int Cid = Convert.ToInt32(Request.QueryString.Get("ClientID"));
string Tno = Request.QueryString.Get("TagId");
after that ------ actual url like this RedirectionURL.aspx?BatchID=1&ClientID=101&TagId=200 I want this url to change like this
RedirectionURL.aspx?1.101.200
How to convert This /RedirectionURL.aspx?BatchID=1&ClientID=101&TagId=200 URL to /RedirectionURL.aspx?1.101.200 this URL?????