TAILIEUCHUNG - Java Server Pages 2nd Edition phần 2

Trang được hiển thị trong Ví dụ 5-1 bao gồm cả hai yếu tố thường xuyên HTML và các yếu tố JSP. Nếu bạn sử dụng chức năng View Source trong trình duyệt của bạn, bạn nhận thấy rằng không có các yếu tố JSP có thể nhìn thấy trong mã nguồn trang web | Chapter 5. Generating Dynamic Content Figure 5-1. JSP book examples main page Figure 5-2. The JSP is Easy example output The page shown in Example 5-1 contains both regular HTML elements and JSP elements. If you use the View Source function in your browser you notice that none of the JSP elements are visible in the page source. That s because the server processes the JSP elements when the page is requested and only the resulting output is sent to the browser. The HTML elements on the other hand are sent to the browser as-is defining the layout of the page. To see the unprocessed JSP page in a separate window you can click on the source link for the file in the book example s main page. The source link uses a special servlet to send the unprocessed JSP page directly to the browser instead of letting the server process it. This makes it easier for you to compare the source page and the processed result. Using JSP Directive Elements Let s look at each piece of Example 5-1 in detail. The first two lines are JSP directive elements. Directive elements specify attributes of the page itself such as the type of content produced by the page page buffering requirements declaration of other resources used by the page and how possible runtime errors should be handled. Hence a directive doesn t directly 53 Chapter 5. Generating Dynamic Content affect the content of the response sent to the browser. There are three different JSP directives page include and taglib. In this chapter we re using the page and the taglib directives. The include directive is described in Chapter 16. JSP pages typically starts with a page directive that specifies the content type for the page @ page contentType text html A JSP directive element starts with a directive-start identifier @ followed by the directive name page in this case directive attributes and ends with . A directive contains one or more attribute name value pairs . contentType text html . Note that JSP element and .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.