Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the methods for asp.net to get the local database?

2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

The main content of this article is to explain "what are the methods for asp.net to get the local database". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn "what are the ways for asp.net to get the local database?"

The copy code is as follows:

Protected void Page_Load (object sender, EventArgs e)

{

/ / method 1

System.Data.DataTable table = System.Data.SqlClient.SqlClientFactory.Instance.CreateDataSourceEnumerator () .GetDataSources ()

GridView1.DataSource = table

GridView1.DataBind ()

/ / get the local

Foreach (System.Data.DataRow row in table.Rows)

{

If (row [0] .ToString () .ToUpper () .Equals (System.Net.Dns.GetHostName () .ToUpper ()

{

Response.Write ("" + row [1])

}

}

/ / method 2

/ / need to refer to Microsoft.SqlServer.Smo.dll

GridView2.DataSource = Microsoft.SqlServer.Management.Smo.SmoApplication.EnumAvailableSqlServers (true)

GridView2.DataBind ()

}

At this point, I believe that you have a deeper understanding of "what are the methods of asp.net getting the local database?" you might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report