Thursday, April 28, 2011

using strongly typed datasets with textboxes on web forms

I would like to use a strongly typed dataset with textboxes on a web form. How can i do this? Cheers Mick

From stackoverflow
  • i am really confused about the question, but if you are using linq, you can query the DB and then call Singleordefault() function to return single record, then you just simply can do like this

    TextBox1.Text = SingleRecordQuery().YourDBField;

    hope this helps.

0 comments:

Post a Comment

Note: Only a member of this blog may post a comment.