首頁 >後端開發 >C#.Net教程 >C#Web應用程式入門經典筆記(下冊)

C#Web應用程式入門經典筆記(下冊)

Y2J
Y2J原創
2017-04-26 10:49:352043瀏覽

讀取Web.config中設定

Conn = new SqlConnection(ConfigurationSettings.AppSettings[“cnFriends.ConnectString”]);
 <appSettings> 
    <!--   User application and configured property settings go here.--> 
    <!--   Example: <add key="settingName" value="settingValue"/> --> 
<add key="cnFriends.ConnectionString" value="data source=(local)\NetSdk;initial catalog=FriendsData;user id=sa" />  </appSettings>

幾個命名空間

#當使用DataSet時,用using system.Data.SqlClient

#當設定Web.config時,用using system.Configuration

這個讓我想起了大一學習C語言時

bool visible 
btnSearch.Text = visible? “New Search” : “Search” ;

這個也蠻好

#
dsResult.tables[“Users”].rows.count 
Conver.Tonint32(ConfigurationSettings.AppSettings[“Cokuale.number”]);

夠狠1:用Session儲存結果並綁定

Session[“Search”] = dsResults; 
dsResults = (DataSet) Session[“Search”];

grdResults.DataBind();
其實,Session,Application等存的是object 類型,因此,最後都要顯式轉換型別
順便說說,判斷是否取到字串型別的值用null 判斷。

夠狠2:從DataTable中選擇行

DataRow[] rows = dsResults.Tables[“Users”].Select(filter); 
dsResults = dsResults.Clone(); 
foreach(DataRow row in rows) 
{ 
         dsResults.Tables[“Tables”].ImportRow(row); 
}

取得webForm 上的一個控制項

ImageButton img = (ImageButton)e.Item.FindControl(“Selectbutton”)

跳轉:



















##

Server.Transfer(“Caoxicao.aspx”);

伺服器控制項新增js腳本(Attributes屬性)


imgShow.Attributes.Add(“onclick”,”document.getElementById(‘tbPrefs&#39;).style.display = ‘block&#39;;”);

再(Style屬性),

img.Style.Add(“Cursor”,&#39;Pointer&#39;);

Color相關:

ColorConvert cv = new ColorConvert(); 
Color selected = Color.Empty; 
Selected = (olor)cv.ConvertFromString(White);

增加Cookie

Response.Cookies.Add(new HttpCookie(“backColor”,r))

我的最愛----使用者控制項

Using FriendsReunion.Controls; 
Protectd override void Oninit(EventArgs e) 
{ 
         FriendsFooter _footer = (FriendsFooter)LoadControl(Request.ApplicationPath+”/Controls/ FriendsFooter.aspx”); 
         SubHeader _subHeader = new SubHeader(); 
} 
Page.Contros.AddAt(0,_footer); 
Page.Contros.AddAt(0,_subHeader); 
base.OnInit(e); 
}

新Html控制項實例


HtmlGenericControl p = new HtmlGenericControl(“p”); 
p.Style.Add(“background-color”,bg);

使用該類可以表示不直接用 .NET Framework 類表示的 HTML 服務器控件標記,如 45a2772a6b6107b401db3c9b82c049c2、e388a4556c0f65e1904146cc1a846bee、6c04bd5ca3fcae76e30b72ad730ca86d 和 240cb830ca84ebaabbd07850110b414d ######返回DataSet ##### #
Public DataSet Contact() 
{ 
         String sql = “@ Select * from … …”; 
         DataSet requests = new DataSet(); 
         New SqlDtaAdapter (sql,conn).Fill(requests); 
         //return requests.GetXml(); 
                   Return requests; 
}
###接收:(當傳回值是Xml格式的資料集) ######
DataSet results = new DataSet(); 
Results.ReadXml(new StringReader(fi.ContactRequest(userid)));
###用到WebService時,只需在方法上新增[WebMethod]特性即可! ######如果新增緩存,則[WebMethod(CacheDurition=600)] #######實例化WebService ######
FriendsService.FriendsInfo fi = new FriendsService.FriendsInfo(); 
String userid; 
Userid = fi.GetUserID(“…”);
###小Tips! #######
HyperLink reg = new HyperLink(); 
Reg.ToolTip = “… …”;
## # 簽出:######
System.Web.Security.Forms.Authentication.SignOut(); 
Response.write (Request.ApplicaltionPath);
### 追蹤偵錯:######
Trace.Write 
Trace.Warn
### 異常:######1.   拋出異常 ######         程序異常拋出 ######         Throw new ***Exception(“…”); ######2.   擷取例外 ######         時從一個try程式碼區塊拋出,try程式碼區塊用來放置所有可能拋出例外的程式碼。 ######Eg: ######
Try 
                  { 
                            … … 
                  } 
         Catch(ArgumentNullExeption e) 
                  { 
                            … 
                  }
###未處理異常web.config設定 ######
<Custom Errors mode = “on” defaultRedriect = “customerror.aspx”; />

以上是C#Web應用程式入門經典筆記(下冊)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn