How do you pass session values from one page to another ?
Answer Posted / raja mohamed
request query:
response.redirect("requireform.aspx"?get=txtbox1.text);
requireform.aspx
txtbox2.text=get
server transfer:
dim my as string
m="value"
server.transfer("requireform.aspx"?get=m)
requireform:
dim t as string
t=page.request("m")
| Is This Answer Correct ? | 11 Yes | 34 No |
Post New Answer View All Answers
What are the advantages of asp.net?
how to retrieve property settings from xml .config file.
How do u optimize a query in asp.net?
What is the server of asp.net?
How would you implement inheritance using c#?
Differentiate globalization and localization.
What are the steps to follow to host a web application on a web server?
About CLR, reflection and assemblies?
Where can I get information on cookies in asp.net?
Is global asax mandatory?
How can we apply themes to an asp.net application?
What are the HTML server controls in ASP.NET?
What is difference between session and cookies?
What are triggers of an updatepanel?
What is a 404 redirect?