Tutorial by Examples

Controls that can be bound with data can make use of SqlDataSource controls. The SqlDataSource control not only allows you to retrieve data from a database, but also edit and sort the data. Retrieving Data Stored Procedure: <asp:SqlDataSource ID="SqlDataSourceEmployees" runat=&q...
<asp:ObjectDataSource ID="ObjectDataSourceEmployees" runat="server" TypeName="MyPackage.MyDataAccessClass" DataObjectTypeName="MyPackage.Employee" SelectMethod="GetEmployees" UpdateMethod="SaveEmplo...

Page 1 of 1