How do you pass value of a text box from page1.aspx to
page2.aspx without storing it as a session value?
Answer Posted / kinjal
in first page write
textbox1.text="k";
string str=textbox1.text.trim();
respons.redirect("page2.aspx?id="+str);
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Sql Queries: A Table will be given Omiting Duplicate rows and adding a new column
Please explain what is reflection and what is it for?
Describe the compilation process for .net code?
Explain how to load the contents of an xml file into an xmldocument object?
Explain what is the difference between constants and read-only variables?
What tags do you need to add within the asp:datagrid tags to bind columns manually.
What is the difference between an abstract class and an interface?
What is the use of gacutil.exe?
Explain what is an anonymous method and how is it different from a lambda expression?
How does linq work?
Explain the difference between task and thread in .net?
What's the problem with .net generics?
What is a serviced component?
What are the two main parts of the .net framework?
Can you write a class without specifying namespace?