Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Đại Cương Về Thiết Kế Web Và Lập Trình Web- P19: Giáo trình bao gồm 5 chương, mỗi chương đều có phần kiến thức lý thuyết và câu hỏi nghiên cứu cụ thể. | 91 Hình 4.7 Sự khác nhau giữa hai phương thức GET và POST. Ví dụ sử dụng phương thức Post để gửi dữ liệu Nội dung file1.htm HTML HEAD HEAD BODY form action file2.asp method POST Name input type Text name- Name maxlength 20 br Company input type Text name Company maxlength 20 br Position input type Text name Position maxlength 20 br Address textarea name Address rows 3 textarea br Phone input type Text name Phone maxlength 20 br input type Submit name Submit value Submit form BODY HTML Nội dung file2.asp HTML HEAD HEAD BODY 92 Response.Write Request.Form Name works for Response.Write Request.Form Company at address Response.Write Request.Form Address as a Response.Write Request.Form Position . BODY HTML Kết quả Jane Doe works for ISSI at address 5609 Kington Pike Knoville TN as a Web Designer. Ví dụ sử dụng phương thức Get để gửi dữ liệu Nội dung filel.asp HTML HEAD HEAD BODY A HREF File2.asp language ASP type general Query sample A BODY HTML Nội dung file2.asp For Each item In Request.QueryString Response.Write item Request.QueryString item BR Next Output language ASP type general Hoặc file2.asp có thể viết Response.Write language Request.QueryString language bR Response.Write type Request.QueryString type BR Chú ý Khi lấy giá trị theo 2 tập hợp là Form hoặc QueryString ta chỉ cần chỉ ra Request tên_biến Chẳng hạn Request.Form Name có thể thay bằng Request Name d. Sử dụng tập hợp Cookies Cookies là nhóm văn bản mà Website đặt vào một file trên đĩa cứng của web browser khi web browser truy cập Website đó. Cookie dùng để nhận diện khi Web browser này truy cập những lần sau. 93 Cookie được gửi đến Server cùng với mỗi yêu cầu. Dữ liệu trong Cookie được đặt trong tập hợp Cookies. Nó được truy cập tương tự QueryString và Form. Tuy nhiên sử dụng đối tượng Request ta chỉ đọc được giá trị của Cookie mà không thay đổi được nó. Ví dụ Response.Cookies myProduct Main DevSite Response.Cookies myProduct Prd1 ASP Response.Cookies myProduct Prd2 VBScript Response.Write .