views:

109

answers:

1

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

A: 

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.