views:

82

answers:

5

In asp.net(c#),I use Linqtosql.. how to retrieve data from database(table) and display in textbox...?

+3  A: 

Study Scott Guthrie's excellent tutorials:

marc_s
+1 for Nerd Dinner
JasCav
+1  A: 

Here's a couple tutorials on using LinqToSql to get you going. Once you retrieve your information from the DB

http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx

http://www.c-sharpcorner.com/UploadFile/scottlysle/L2SinCS06022008035847AM/L2SinCS.aspx

klabranche
+1  A: 

If you intend to use Web Forms maybe start here: http://www.asp.net/general/videos/build-your-first-asp-net-application-with-asp-net-web-forms

and see other video tutorials here: http://www.asp.net/web-forms

If you want to use MVC then you can find tutorials for that as well on the same web site.

Stefan Egli
+1  A: 

A simple tutorial to get started with LINQ to SQL and databinding - http://www.programminghelp.com/web-development/asp-net/using-linq-to-sql-to-add-delete-from-sql-database-in-c/

Misnomer