Do the data binding at server side

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Can I do data binding for a textbox in a webform at server side ? not using
the Data Binding Expression.

Thanks
Wilson
 
Wilson said:
Hi,

Can I do data binding for a textbox in a webform at server side ?
not using the Data Binding Expression.

databinding in asp.net is always server-side, so I'm not sure what
your goal is.

FB

--
------------------------------------------------------------------------
Lead developer of LLBLGen Pro, the productive O/R mapper for .NET
LLBLGen Pro website: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------
 
I mean I don't want to use formview or Data Binding Expression.

Can I use do someting like window form ?
e.g.
textbox.DataBindings.add(...)

not using <%# .... %>

Thanks
Wilson
 
Wilson said:
I mean I don't want to use formview or Data Binding Expression.

Can I use do someting like window form ?
e.g.
textbox.DataBindings.add(...)

not using <%# .... %>

Only one-way databinding, as webforms don't have a currencymanager and
leave the 2-way databinding up to the controls themselves, in this case
the formview.

FB
Thanks
Wilson


--
------------------------------------------------------------------------
Lead developer of LLBLGen Pro, the productive O/R mapper for .NET
LLBLGen Pro website: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top