当前位置:数据库 > SQLServer >>

ASP.NET获取MS SQL Server安装实例

[csharp]  
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"]));  
        }  
    }  
 
补充:Web开发 , ASP.Net ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,