謝該文章的目地是為了從ASP打算轉向.NET先將學習過程中遇到的問題和解決的辦法寫出來提醒學習者少走彎路
1、Q:請問在asp.net中路徑中 "~" 波浪號表示什麼含義?
A:是你的虛擬目錄的根 .
比如你的虛擬目錄是 http://localhost/web 那麼 ~/aaa/index.html 就 是 http://localhost/web/aaa/index.html
參考:http://topic.csdn.net/t/20060309/13/4603073.html
關鍵字:asp.net 路徑 波浪
引擎:Google
2 使用c#給服務器控件的客戶端事件綁定JS處理程序的方法?
wctl.Attributes.Add("onfocus", string.Format("this.className = '{0}';", className));
編程html後的代碼為;
onfocus="this.className='className'"
18:11 2009-3-1:使用C#代碼讀取web.config文件中的<connectionStrings>配置節
demo:
<connectionStrings>
<add name="test_dbConnectionString" connectionString="Data Source=PROGRAME-8P1PK1;Initial Catalog=test_db;User ID=sa;PassWord=000000"
providerName="System.Data.SqlClient" />
</connectionStrings>
1 引用using System.Web.Configuration命名空間
2 string connectionString =ConfigurationManager.ConnectionStrings["dbConnectionString"].ConnectionString;
參考:http://www.1-100.org/AspNet/25018.htm
關鍵字:connectionStrings asp.net
*