在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
参考MSDN的文章 http://msdn.microsoft.com/zh-cn/library/a6t1z9x2.aspx 中所指的SqlDataSourceEnumerator类别,是应用程序在当前的网络中查找SQL Server实例。 Insus.NET在演示中,是把找到的实例显示于DropDownList控件中。首先在.aspx拉一个DropDownList控件:
View Code
Server: <asp:DropDownList ID="DropDownListInstance" runat="server"></asp:DropDownList>
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"])); } }
|
请发表评论