程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> Jsp&Servelet 學習筆記(2)

Jsp&Servelet 學習筆記(2)

編輯:關於JSP

1.2第一個jsp(SUN企業級應用的首選)程序介紹:
 
1、    打開一個文本編輯器,或者一個jsp(SUN企業級應用的首選)專用的文本編輯器能標出一些語法的高亮。
2、    如果你編寫一個jsp(SUN企業級應用的首選)來處理http請求那麼。將會和編寫html文件一樣。
3、    一個jsp(SUN企業級應用的首選)文件如果要包含一些jsp(SUN企業級應用的首選)命令(列如一個taglib)的話要在文件開頭寫上<%@%>
4、    你可以在你需要的地方輸入一個普通的表單提交或者用戶標簽。
5、    保存文件時以.jsp(SUN企業級應用的首選)為擴展名進行保存。在一個web應用中放在整個目錄的頂層。既放在
Web-info同級目錄下。
 
Example :
// 表示注釋內容 <%-- --%>
<%-- use the taglib directive to make the JSTL 1.0 core tags available; use the uri "http://java.sun.com/jsp(SUN企業級應用的首選)/jstl/core" for JSTL 1.1 --%>//使用c:out標簽http://www.knowsky.com/
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%-- use the jsp(SUN企業級應用的首選):useBean standard action to create the Date object; the object is set as an attribute in page scope --%>//在jsp(SUN企業級應用的首選)中使用javabean指明其(id)對象和(java.util.Date)類.
<jsp(SUN企業級應用的首選):useBean id="date" class="java.util.Date" /> <html><head><title>First jsp(SUN企業級應用的首選)</title></head><body><h2>Here is todays date</h2>//使用表達式輸出${data}
<c:out value="${date}" /> </body></html>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved