ASP.NET獲取MS SQL Server安裝實(shí)例實(shí)現(xiàn)思路及代碼
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 22:41:51
ASP.NET獲取MS SQL Server安裝實(shí)例實(shí)現(xiàn)思路及代碼
ASP.NET獲取MS SQL Server安裝實(shí)例實(shí)現(xiàn)思路及代碼:參考MSDN的文章 http://msdn.microsoft.com/zh-cn/library/a6t1z9x2.aspx中所指的SqlDataSourceEnumerator類別,是應(yīng)用程序在當(dāng)前的網(wǎng)絡(luò)中查找SQL Server實(shí)例。 Insus.NET在演示中,是把找到的實(shí)例顯示于DropDownList控件中。首先在.
導(dǎo)讀ASP.NET獲取MS SQL Server安裝實(shí)例實(shí)現(xiàn)思路及代碼:參考MSDN的文章 http://msdn.microsoft.com/zh-cn/library/a6t1z9x2.aspx中所指的SqlDataSourceEnumerator類別,是應(yīng)用程序在當(dāng)前的網(wǎng)絡(luò)中查找SQL Server實(shí)例。 Insus.NET在演示中,是把找到的實(shí)例顯示于DropDownList控件中。首先在.
參考MSDN的文章 http://msdn.microsoft.com/zh-cn/library/a6t1z9x2.aspx中所指的SqlDataSourceEnumerator類別,是應(yīng)用程序在當(dāng)前的網(wǎng)絡(luò)中查找SQL Server實(shí)例。
Insus.NET在演示中,是把找到的實(shí)例顯示于DropDownList控件中。首先在.aspx拉一個(gè)DropDownList控件:
代碼如下:
Server: <asp:DropDownList ID="DropDownListInstance" runat="server"></asp:DropDownList>
然后在Page_Load事件寫:
代碼如下:
View Code
protected void Page_Load(object sender, EventArgs e)
{
DataTable dataTable = SqlDataSourceEnumerator.Instance.GetDataSources();
foreach (DataRow dr in dataTable.Rows)
{
if (string.IsNullOrEmpty(dr["InstanceName"].ToString()))
this.DropDownListInstance.Items.Add(string.Concat(dr["ServerName"]));
else
this.DropDownListInstance.Items.Add(string.Concat(dr["ServerName"], "\\", dr["InstanceName"]));
}
}
運(yùn)行結(jié)果,Insus.NET的手提電腦安裝了SQL Server 2012和SQL Server 2008 R2,因此顯示兩個(gè)SQL Server實(shí)例。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
ASP.NET獲取MS SQL Server安裝實(shí)例實(shí)現(xiàn)思路及代碼
ASP.NET獲取MS SQL Server安裝實(shí)例實(shí)現(xiàn)思路及代碼:參考MSDN的文章 http://msdn.microsoft.com/zh-cn/library/a6t1z9x2.aspx中所指的SqlDataSourceEnumerator類別,是應(yīng)用程序在當(dāng)前的網(wǎng)絡(luò)中查找SQL Server實(shí)例。 Insus.NET在演示中,是把找到的實(shí)例顯示于DropDownList控件中。首先在.