ramesh


{ City } hyderabad
< Country > india
* Profession * software analyst
User No # 11263
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 10
Users Marked my Answers as Wrong # 13
Questions / { ramesh }
Questions Answers Category Views Company eMail




Answers / { ramesh }

Question { Wipro, 12850 }

I have to send data throug querystring from one page to
another. But it should not be displayed in URL. How it is
possible?


Answer

Write this code in default.aspx:

Response.Redirect("default2.aspx?Name=" + txtStudName.Text);

Write this code in default2.aspx:

if (Request.QueryString["Name"] != null)
{
TextBox1.Text = Request.QueryString
["Name"].ToString();

}

Is This Answer Correct ?    10 Yes 13 No