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

來源:互聯網
上載者:User
最近看了《Beginning C# Web Applications Wtith Visual Studio .Net 》。感覺這本書在一些細節方面寫的不錯,特做筆記,為後來者提供一些或許有用的東東。今天先寫出來一些,年前正確整理完。

當前日期:

Lbll.Text = DateTime.Now.ToLongDataString();
This.controls.Add(lbl);
URL:
HyperLink reg = new HyperLink();
Reg.Text = “Register;
Reg.NavigateUrl = Context.Request.ApplicationPath + “Myfirst.aspx”;

判斷使用者授權:

Context.User.Identity.IsAuthenticated;

表格相關:

1. 建立一圖片img
2. img添加到cell
3. cell添加到row
4. row添加到Table
5. Table添加到PlaceHolder

Table tb = new Table(); TableRow row = new TableRow(); Image img = new Image(); img.ImageUrl = "Images/winbook.gif"; img.ImageAlign = ImageAlign.Middle; img.Width = new Unit(24, UnitType.Pixel); img.Height = new Unit(24, UnitType.Pixel); cell = new TableCell(); cell.Controls.Add(img); row.Cells.Add(cell); HyperLink lnk = new HyperLink(); lnk.Text = "News"; lnk.NavigateUrl = "News.aspx"; row.Cells.Add(cell); tb.Rows.Add(row); phNav.Controls.Add(tb);

將已驗證身份的使用者重新導向回最初請求的URL

public static void RedirectFromLoginPage(string userName,bool createPersistentCookie);

參數
userName
用於 Cookie 身分識別驗證的使用者名稱稱。這不需要映射到帳戶名稱,並將由 URL 身分識別驗證使用。
createPersistentCookie
指定是否應當發出持久性 Cookie(跨瀏覽器會話儲存的 Cookie)。

標準資料庫操作1

String sql; SqlCommand cmd; SqlConnection conn; Sql = “insert into …”; conn = new SqlConnection (“data source = (local); initial catalog = caoxicao;userid = sa”); cmd = new SqlCommand (sql,conn); conn.open(); cmd.ExecuteNonQuery();

標準資料庫操作2

SqlConnection conn; SqlCommand cmd; SqlDataReader reader; string sql; sql = “select * from TableName”; conn = new SqlConnection (“data source = (local); initial catalog = caoxicao;userid = sa”) cmd = new SqlCommand(sql,conn); conn.open(); reader = cmd.ExecuteReader();

可以用reader的Read()方法判斷是否真的返回了值

If (reader.Read()) ...{      This.Email.Text = reader[“Email”].ToString(); } DataSet 基本操作 DataSet dsCaoxicao; String sql; SqlConnection conn; SqlDataAdapter adPlaces; conn = new SqlConnection (“data source = (local); initial catalog = caoxicao;userid = sa”) adPlaces = new SqlDataAdapter(sql,conn); dsCaoxiCao = new DataSet(); conn.Open(); adPlaces.Fill(dsCaoxiCao,”Places”);
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.