外文文献—ASP.NET 2.0.doc
文本预览下载声明
英文文献
ASP.NET 2.0
VS2005 in the development of ASP.NET 2.0 database program
1. Introduction
In November 7, 2005, Microsoft officially released. NET 2.0 (including ASP.NET 2.0),
Visual Studio 2005 and SQL Server 2005. All of these components were designed to work independently side by side. In other words, ASP.NET version 1. X and version 2.0 can be installed on the same machine, you can have Visual Studio.NET 2002/2003 and Visual Studio 2005, and also that SQL Server 2000 and SQL Server 2005. Moreover, Microsoft also issued Visual Studio 2005 and SQL Server 2005 Express-a SKU. Note that the Express version does not have all the features of Professional Edition.
2.0 In addition to supporting 1. X-style data access, including its new data source controls - which makes database access and modify data very easily. The use of these data source control, you simply add the controls to ASP.NET pages and through control of these attributes to configure the connection string and SQL query. Then, the data Web control of the DataSourceID property to the data source controls the ID, the data source controls can be bundled with a data Web control (such as GridView) on. Today, we must rely on the preparation of the code to create connections, creating order, the designated SQL query, retrieve a DataReader or DataSet, and it bound to the data Web control the days are gone. These steps can be through the use of the statement of the data source controls instead. (Of course, you can through the use of your 1. X familiar with the code of the steps programming access to data.)
In this article we will look at how to connect and display ASP.NET 2.0 from a database of data. Specifically, we will discuss how to use programming and a statement of ways to access data and analysis through the GridView control data to show that the basic operation.
Second, Visual Studio 2005 in the operation of the database
When you install any of Visual Studio 2005 version, you always be asked if you wa
显示全部