⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.htm

📁 用vs2005编网页的入门实例
💻 HTM
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Data Access Readme</title>
    <LINK rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>

    <h1>Data Access</h1>

    <p>This sample demonstrates how to use the new data source controls in ASP.NET 2.0. Covered in this
    sample are the SqlDataSource control, the XmlDataSource control, and the ObjectDataSource control.</p>
    
    <p>The first part of this sample shows how to use the SqlDataSource control to easily retrieve data
    from a SQL Server database and display that data using a GridView control. The second part of this
    sample demonstrates the XmlDataSource control by binding it to an XML file and showing that data
    using the Repeater control. The third part shows how to use an ObjectDataSource control to bind to a
    business object that returns a strongly-typed collection. A GridView control uses the ObjectDataSource
    control as its data source to display the data.</p>
    
    <p>This sample requires the following to be installed:</p>
		<ul>
            <li>Microsoft Visual Studio 2005</li>
            <li>SQL Server 2005 Express Edition</li>
            <li>AdventureWorks Database (<b>Note:</b> The connection string is set in the web.config
                file and uses the default installation path of C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Data.mdf.
                If you install the database to a different location you must change the web.config file setting). </li>
        </ul>
    
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -