程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP基礎知識 >> 從ASP轉到ASP.NET過程中常見問題收集

從ASP轉到ASP.NET過程中常見問題收集

編輯:ASP基礎知識

謝該文章的目地是為了從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

*
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved