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 Posted / ramesh
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 |
Post New Answer View All Answers
Write some code using interfaces, virtual methods, and an abstract class`
Define repository pattern in mvc.net? : asp.net mvc
Where session variables are stored?
What is the use of global.asax file?
Explain how can you debug your .net application?
What are HTTP handlers in ASP.NET?
Explain the working of passport authentication.
i have 3+ exp in .net? i am going interview now but they asked me do you know any TOOL? which tool will i study please refer me?
Explain asp.net application life cycle?
How do I use a proxy server when invoking a web service?
What is work flow gen? how can it will work with .Net?
What are the different types of proxy patterns?
What is difference between session and cookie?
What is the difference between executescalar and executenonquery?
What is difference between rest and soap?