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
Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component
What is machine.config in .net?
What are the challenging issues you have faced in implementation project/Maintainance project in .net Functionality? How you have overcome that issue?
What is singleton activation mode in .net?
What are the improvements made in cas in .net 4.0?
What is the difference between function and stored procedure?
What is RCW (Run time Callable Wrappers)?
Explain what is a manifest in .net?
Do you know what is linq?
How inheritance works in .net?
What is the best way to crack the certification?
What is .net debug & trace?
What does jit compilation do in .net?
Is .net 4.8 backwards compatible?
Explain me what is an anonymous method and how is it different from a lambda expression?