2007年4月26日

Performing Data Access->Working with Databases in Visual Web Developer 2005 Express Edition

摘要: Visual Web Developer 2005 Express Edition includes SQL Server 2005 Express Edition, a free edition of SQL Server 2005 targeted at non-professional or hobbyist developers who want a simple database sol... 阅读全文

posted @ 2007-04-26 08:51 改变热爱 阅读(281) 评论(0) 推荐(0)

Performing Data Access->Advanced Data Scenarios

摘要: 1CREATE PROCEDURE [DeleteContact] 2 @original_contactID int,3 @original_contactName varchar(50)4AS5 DELETE FROM Contacts WHERE ContactID = @original_contactID AND ContactName = @original_contactNam... 阅读全文

posted @ 2007-04-26 08:50 改变热爱 阅读(342) 评论(0) 推荐(0)

Performing Data Access->Hierarchical Data

摘要: Data source controls can expose either tabular or hierarchical data, or both. The SqlDataSource and ObjectDataSource controls demonstrated previously are examples of tabular data source controls. ASP.... 阅读全文

posted @ 2007-04-26 08:49 改变热爱 阅读(166) 评论(0) 推荐(0)

Performing Data Access->Databinding in Templates

摘要: Templated data-bound controls give you ultimate flexibility over the rendering of data in your pages. You may recall several templated controls from ASP.NET v1.x, such as the DataList and Repeater con... 阅读全文

posted @ 2007-04-26 08:47 改变热爱 阅读(170) 评论(0) 推荐(0)

Performing Data Access->Binding to Objects

摘要: The previous section demonstrated binding controls to SqlDataSource, which supports properties for the specifying connection string, SQL statements or stored procedures used to query and modify the da... 阅读全文

posted @ 2007-04-26 08:44 改变热爱 阅读(289) 评论(0) 推荐(0)

Performing Data Access->Binding to Databases

摘要: One of the most common types of data to display in a Web application is data that comes from a SQL database such as Microsoft SQL Server, Oracle, or another OLEDB or ODBC data store//数据库. The SqlDataS... 阅读全文

posted @ 2007-04-26 08:43 改变热爱 阅读(248) 评论(0) 推荐(0)

Performing Data Access

摘要: What's New in 2.0 Data Source Controls //数据源控件- ASP.NET 2.0 introduces declarative data source controls //数据源控件that expose //暴露,揭露 data from a backend store, such as //例如,像a SQL database, middle... 阅读全文

posted @ 2007-04-26 08:21 改变热爱 阅读(170) 评论(0) 推荐(0)

导航