[ASP.net](note)常用連線字串

ASP.net的連線字串,個人常使用以下二種

在ASP.net的連線字串,個人常使用以下二種:
1、把sqldatasource小精靈所自動產生的連線字串(在html碼中)拿來用
string ds = WebConfigurationManager.ConnectionStrings["XXXConnectionString"].ConnectionString;
注意前後沒有引號。
(實際連線字串仍存在webconfig檔中)
 
2、針對資料庫在另一台主機的連線方式,以ip來連線
string ds="data source=192.168.0.100;Initial catalog=資料庫名稱;persist security info=true;user      
 
                      id=帳號;password=密碼;MultipleActiveResultSets=True";
                        (前提仍得先對該主機資料庫設定好可接受遠端連入)
 
 
然後再放進→ SqlConnection conn = new SqlConnection(ds);
.........................
 
--
強烈建議購物網店或實體店家都必須使用關鍵字廣告or原生廣告來將Yahoo上與聯播網的廣大流量導至自己的網站!

●Yahoo關鍵字廣告/原生廣告
◆Yahoo廣告方案介紹 : https://goo.gl/5k8FHW
◆Yahoo廣告剖析與運用 : http://goo.gl/4xjUJD

 

​​