Tuesday, September 18, 2007

Working with Database ASP.Net & C#.Net 2.0

For running large queries with ASP.Net and C#.Net in SQL Server 2005,

http://www.asp.net/learn/data-access/tutorial-25-cs.aspx
http://static.asp.net/asp.net/files/DataTutorials/datatutorial25cs.pdf



Introduction



Basic Reporting



Master/Detail



Custom Formatting



Editing, Inserting, and Deleting Data



Paging and Sorting



Custom Button Actions



Displaying Data with the DataList and Repeater



Filtering Scenarios with the DataList and Repeater



Editing and Deleting Data Through the DataList



Paging and Sorting with the DataList and Repeater



Custom Button Actions with the DataList and Repeater



Accessing the Database Directly from an ASP.NET Page



Enhancing the GridView



Working with Binary Files



Caching Data



Database-Driven Site Maps



Working with Batched Data



Advanced Data Access Scenarios







SELECT DEPTNO, ROW# FROM DEDBADM.DEPT TB1, TABLE (SELECT COUNT(*) + 1 AS ROW# FROM DEDBADM.DEPT TB2 WHERE TB2.DEPTNO < TB1.DEPTNO) AS TDEPT_TAB
WHERE ROW# BETWEEN 2 AND 4;

No comments: