Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 184051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T15:13:27+00:00 2026-05-11T15:13:27+00:00

I have yet to find a nice way to do two way databinding in

  • 0

I have yet to find a ‘nice’ way to do two way databinding in .Net.
The one thing I don’t like for example in the present asp.net two way databinding is doing the binding in the aspx page is no compile time checking, ie:

<asp:TextBox ID='TitleTextBox'             runat='server'            Text='<%# Bind('Title_oops_spelled_wrong') %>'> 

I would like to have something like this:

Class Binder Public Sub BindControl(ctl As Control, objectProperty As ???????)   '// Add ctl and objectProperty to a collection  End Sub 

What I don’t know is possible is, how to receive the objectProperty in my example; I want to receive a reference (ie: a pointer) to the property, so later, via this reference, I can either read from or write to the property.

Can this somehow be done with delegates perhaps??

UPDATE:
Note, I want to add the control reference to a binding collection, this collection would then be used for binding and unbinding.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T15:13:27+00:00Added an answer on May 11, 2026 at 3:13 pm

    Is there a reason that you want to avoid using the .NET data binding mechanism? It handles keeping parity between the control’s value and the class’s property value already, and provides rich design-time support.

    You can interface with the data binding engine in two ways: either programatically or through the designer. To do basic data binding programatically is trivial. Say I have a class named ‘FooClass’ with a string property named ‘MyString’. I have a TextBox named myTxtBox on a form with an instance of FooClass called foo and I want to bind it to the MyString property:

    myTxtBox.DataBindings.Add('Text', foo, 'MyString'); 

    Executing this will cause updates to the TextBox to get assigned to the property, and changes to the property from elsewhere will be reflected in the TextBox.

    For more complex data binding scenarios, you’ll probably want to create an Object Data Source in your project and put a BindingSource on your form. If you need help with specific steps in creating the data source I can help, but in general you’ll create the source in your project and select the class to which you want to bind. You can then place a BindingSource on your form, point it at your object project data source, then use the Visual Studio designer to bind properties for your controls to properties on your object. You then set the DataSource property in your code to an instance of the class or collection to which you want to bind.

    As a side note, as far as I am aware there is no ‘property delegate’, as properties are actually function pairs (a get_ and a set_).

    UPDATE:

    As I read your comments, I’d like to point out that .NET data binding, even at the control level, does NOT automatically use reflection. Data binding is built around type descriptors and property descriptors, both for the bound control and the data source. It’s true that if one or both of these sides does not implement specific property and type description then reflection will be used, but either side is more than free to provide its own description profile which would NOT use reflection.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have searched online for a solution, but have yet to find one that
Thanks to everyone in advance - I have yet to find an easy way
I have searched the net pretty thoroughly and have yet to find anything. Is
I've looked around but have yet to find a great solution the the following
This is a fairly common problem to which I have yet to find an
I've tried Googling and searching stackoverflow, but have yet to find a solution too
I'm still yet to find a decent solution to my scenario. Basically I have
I have been scanning the chromium blog for sometime and have yet to find
This has been bugging me for a while and have yet to find an
I have yet to find a pointer to the authoritative list of built-in rails

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.