In asp.net(c#),I use Linqtosql.. how to retrieve data from database(table) and display in textbox...?
Study Scott Guthrie's excellent tutorials:
- Introduction to Linq-to-SQL
- Free ASP.NET MVC "Nerd Dinner" Tutorial (has lots of stuff on Linq-to-SQL, too)
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
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.
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/
check the following links
- http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx
- http://www.programminghelp.com/web-development/asp-net/using-linq-to-sql-to-add-delete-from-sql-database-in-c/