TextBox in ASP.NET
-
Hi, i need help! I have a value on a textbox, but this textbox is visible= false. So, when i go to another page using Server.Transfer and i try to access it by Request.Form["TextBox] the page CANT see the value. What can i do?What control can i use to do this? PD:The requirements dont let use Request.QueryString. Thanks for ur help BECK 7
-
Hi, i need help! I have a value on a textbox, but this textbox is visible= false. So, when i go to another page using Server.Transfer and i try to access it by Request.Form["TextBox] the page CANT see the value. What can i do?What control can i use to do this? PD:The requirements dont let use Request.QueryString. Thanks for ur help BECK 7
Your questions really belongs in the ASP.NET Forum[^]. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
Your questions really belongs in the ASP.NET Forum[^]. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
hmm but the fact that because textbox is not rendered into page (because visible=false), so you obviously can't acces it's value is not about C#, it's about IQ. David David's thoughts / dnhsoftware.org / MyHTMLTidy
-
No, you're not talking about C# at all. You're talking about a TextBox on an ASP.NET Web Form. It doesn't matter what language your using, the problem is still the same. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
No, you're not talking about C# at all. You're talking about a TextBox on an ASP.NET Web Form. It doesn't matter what language your using, the problem is still the same. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
hmm but the fact that because textbox is not rendered into page (because visible=false), so you obviously can't acces it's value is not about C#, it's about IQ. David David's thoughts / dnhsoftware.org / MyHTMLTidy
-
So, u mean there is no way i can get a value from a page to another? except with Session? BECK 7
I didn't say that. I said why your solution failed :) You can have
<input type="hidden" value="pass_me_to_other_form" />
That way, you can acess its value same way as you tried with textbox. David "Stay Kul And Happy" I.A.