ASP.NET
ADO.NET using C# database access
By venkat - Posted on January 5th, 2008
ADO.NET cleanly factors data access from data manipulation into discrete components that can be used separately or in tandem. ADO.NET includes .NET Framework data providers for connecting to a database, executing commands, and retrieving results. Those results are either processed directly, or placed in an ADO.NET DataSet object in order to be exposed to the user in an ad-hoc manner, combined with data from multiple sources, or remoted between tiers. The ADO.NET DataSet object can also be used independently of a .NET Framework data provider to manage data local to the application or sourced from XML.
- Add new comment
- Read more
- 305 reads
- 50 min 5 sec
- 305 plays
ASP.Net Web Service - Hello World
By venkat - Posted on December 30th, 2007
Web Services are a very general model for building applications and can be implemented for any operation system that supports communication over the Internet. Web Services use the best of component-based development and the Web. Web Services communicate with the Simple Object Access Protocol (SOAP) and Extensible Markup Language (XML).
- Add new comment
- 189 reads
- 5 min 13 sec
- 189 plays
ASP.NET 2.0 Nested GridView
By venkat - Posted on December 24th, 2007
This is a simple sample example screen cast of how to nest a grid view inside another grid view to display master - detail information. For example listing orders and items for each order.
- Add new comment
- 391 reads
- 5 min 23 sec
- 392 plays