Mayfield2268 Posted September 9, 2003 Posted September 9, 2003 Hello If I have the text of a textbox binded to a Session variable, is there a way that I can bind any changes back to the session variable on a page unload or some other event without using the following code for each textbox on my page. Session("text") = txtBox1.text Thanks Quote
WebJumper Posted September 10, 2003 Posted September 10, 2003 Databinding is not a real databindung under ASP.net like the Windows-Databindung. It is actually a one-way databinding, so the standart databind of ASP.net display only data, but sets the values not back. The only way I know is creating a custom-control and programming your own two-way databining... Quote
Moderators Robby Posted September 10, 2003 Moderators Posted September 10, 2003 You can put their values into an array or something and cache or session that. What are you trying to achieve? Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.