1. Trang chủ
  2. » Công Nghệ Thông Tin

Tài liệu CHƯƠNG III: HTML SERVERCONTROL VÀ WEB SERVER CONTROL docx

66 1,3K 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 66
Dung lượng 885 KB

Nội dung

CHƯƠNG III: HTML SERVERCONTROL WEB SERVER CONTROL Lý thuyết 3 tiết Thực hành 6tiết I. HTML Server Control  Các HTML control thông thường như <h1>, <a>, <input> sẽ không được xử lý bởi server mà được gửi trực tiếp cho browser để hiển thị  Các HTML control có thể được xử lý ngay tại phía server bằng cách chuyển chúng thành các HTML server control. I. HTML Server Control  Chuyển một HTML control thành một HTML server control bằng cách thêm thuộc tính runat=”server” vào trong các tag HTML  Cú pháp: Ví dụ: <input type=“text” name=“txtName” runat=“server”/> <TagName runat=“server”></TagName> <TagName runat=“server”></TagName> I. HTML Server Control  Tất cả HTML Server Control phải được đặt trong tag <form> với thuộc tính runat = “server”  HTML Server Control tồn tại bên trong không gian tên System.Web.UI.HtmlControls  Hệ thống thứ bậc của HTML Server Controls System.Object System.Web.UI.Control HtmlControl HtmlImage HtmlInputControl HtmlInputFile HtmlInputHidden HtmlInputImage HtmlInputRadioButton HtmlInputText HtmlInputButton HtmlInputCheckBox HtmlContainerControl HtmlForm HtmlGenericControl HtmlSelect HtmlTable HtmlTableCell HtmlTableRow HtmlTextArea HtmlAnchor HtmlButton <table> <form> <input type=button> <tr> <td>,<th> <input type=text> <textarea> <input type=image> <input type=file> <input type=hidden> <input type=radio> <input type=checkbox> <select> <a> <span>, <div>, <button> <img> I. HTML Server Control  Các sự kiện (event) của HTML server Control:  onServerClick  onServerChange  onStartSelect,… Cú pháp:  Lưu ý: Function không có tham số . <tagName event=“Function_Process”></tagName> <tagName event=“Function_Process”></tagName> I. HTML Server Control Ví dụ: <input type=“Submit” value=“Gui” id=“btnSend” runat=“server”onServerClick=“btnSend_ServerCli ck”/> I. HTML Server Control  Cách lấy dữ liệu từ các HTML server Cú pháp:  Đối với tag DIV, SPAN dùng thuộc tính .innerHTML controlfield_id.Value controlfield_id.Value I. HTML Server Control Ví dụ: <script runat=“server”> public void btnSend_ServerClick(object sender,System.EventArgs e) { String strName; strName=txtName.Value; Response.Write(“Hello :”+strName) } </script> Ví dụ <script runat="server"> void Button_ServerClick(object sender, EventArgs e) { MySpan.InnerHtml = “Chao ban : " + myText.Value + "."; } </script></head> <body> <form id="myForm" runat="server"> <input type="text" id="myText" runat="server"><br> <input id="Submit1" type="submit" Value="Click Here!" OnServerClick="Button_ServerClick" runat="server"> <span id="MySpan" runat="server"/><b> </form> </body> [...]...II Web Server Control Web server control là những tag đặc biệt của ASP.NET Các control này được xử lý trên server đòi hỏi phải có thuộc tính runat= serverWeb server control tồn tại bên trong không gian tên System .Web. UI.WebControls  Cú pháp:  Hệ thống thứ bậc của Web Server Control System.Object System .Web. UI .Control Repeater Xml WebControl... năng:Kiểm soát các control chứa trong Panel Control  Được dẫn xuất từ lớp Webcontrol II Web Server Control  Cú pháp . CHƯƠNG III: HTML SERVERCONTROL VÀ WEB SERVER CONTROL Lý thuyết 3 tiết Thực hành 6tiết I. HTML Server Control  Các HTML control thông thường. System .Web. UI.HtmlControls  Hệ thống thứ bậc của HTML Server Controls System.Object System .Web. UI .Control HtmlControl HtmlImage HtmlInputControl HtmlInputFile HtmlInputHidden HtmlInputImage HtmlInputRadioButton HtmlInputText HtmlInputButton HtmlInputCheckBox HtmlContainerControl HtmlForm HtmlGenericControl HtmlSelect HtmlTable HtmlTableCell HtmlTableRow HtmlTextArea HtmlAnchor HtmlButton <table> <form> <input

Ngày đăng: 15/02/2014, 18:20

HÌNH ẢNH LIÊN QUAN

 ImageUrl: Địa chỉ của hình cần hiển thị - Tài liệu CHƯƠNG III: HTML SERVERCONTROL VÀ WEB SERVER CONTROL docx
mage Url: Địa chỉ của hình cần hiển thị (Trang 22)
 ImageUrl:đường dẫn đến hình cần hiển thị  (nếu  dùng  thuộc  tính  này  thì  hyperlink  có  tác  dụng  giống  như  Imagebutton) - Tài liệu CHƯƠNG III: HTML SERVERCONTROL VÀ WEB SERVER CONTROL docx
mage Url:đường dẫn đến hình cần hiển thị (nếu dùng thuộc tính này thì hyperlink có tác dụng giống như Imagebutton) (Trang 23)
 BackImageUrl: URL của hình ảnh hiển thị - Tài liệu CHƯƠNG III: HTML SERVERCONTROL VÀ WEB SERVER CONTROL docx
ack ImageUrl: URL của hình ảnh hiển thị (Trang 25)
 Table control cho phép xây dựng các bảng động bằng mã lệnh sử dụng các thuộc tính  tập hợp Table Rows và Table Cells - Tài liệu CHƯƠNG III: HTML SERVERCONTROL VÀ WEB SERVER CONTROL docx
able control cho phép xây dựng các bảng động bằng mã lệnh sử dụng các thuộc tính tập hợp Table Rows và Table Cells (Trang 38)
 ImageUrl: URL của hình ảnh cần được hiển thị - Tài liệu CHƯƠNG III: HTML SERVERCONTROL VÀ WEB SERVER CONTROL docx
mage Url: URL của hình ảnh cần được hiển thị (Trang 40)

TỪ KHÓA LIÊN QUAN

w