()關閉浏覽器並在VWD中切換到Source View查看一下VWD在SqlDataSource控件中創建的代碼Fixturesaspx頁面在Source View中包含如下代碼服務器可能會由一個點號(完全停止)標識例如\SQLExpress而不是(local)\ SQLExpress:
<%@ Page Language=VB MasterPageFile=~/sitemaster AutoEventWireup=false CodeFile=Galleryaspxvb Inherits=Gallery_AllTest title=Untitled Page %>
<asp:Content ID=Content ContentPlaceHolderID=mainContent Runat=Server>
<asp:SqlDataSource ID=SqlDataSource runat=server
connectionString=Data Source=\SQLEXPRESS;
AttachDbFilename=C:\BegASPNET\Chapters\Begin\Chapter\App_Data\WroxUnitedmdf;
Integrated Security=True;
User Instance=True
providerName=SystemDataSqlClient
SelectCommand=SELECT * FROM [Fixtures] >
</asp:SqlDataSource>
</asp:Content>
操作回顧
在這個試一試練習中使用VWD創建了一個SqlDataSource控件注意拖放該控件並在向導中回答一系列的問題是多麼簡單VWD輸出了前一小節中列出的所有屬性首先是ID屬性和runat屬性接下來是一個連接字符串其中包含了服務器和數據庫的名稱數據庫的名稱由AttachDbFilename指定在向導中要求使用Windows Authentication所以VWD在連接字符串中加入了Integrated Security這意味著允許Windows通過登錄Windows所使用的用戶名和口令驗證您的身份最後當選擇將一個Microsoft SQL Server數據文件作為數據源時VWD為該數據源控件添加了一個屬性該屬性設置提供商使用SystemDataSqlClient
ASPNET 入門教程完整版
[] [] []
From:http://tw.wingwit.com/Article/program/net/201311/14724.html