hello sir
I am application i find amc_name and amc_id with help of viewstate like this
string name = ViewState["Amc_Name"].ToString();
string id = ViewState["Amc_ID"].ToString(); and with these two value i goto another page like that dynTable += "<a href=mfnews.aspx?amcid=" +id + "&amc_name=" + name + ">more</td>";
and i go to another page with querystring
string query_string = HttpContext.Current.Request.QueryString.ToString()
but in this string name is not show proper only fist name show not full name
how can remove query_string space..........
Bhuwan Rawat