日期:2014-05-16 浏览次数:20364 次
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> <% String titleString = "My Struts2 JSP Template"; String footerString= "My Struts2 JSP Template"; String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <html> <head> <title><%=titleString%></title> </head> <body> <center><h1><%=titleString%></h1></center> <hr> <%=new Date()%><br> Actionerror:<s:actionerror/><br> Actionmessage:<s:actionmessage/><br> <hr> <div style="height:100%;border:1px solid #6699FF"> <s:form action="myAction" method="post"> <s:textfield name="user" label="UserName" value="default value" size="50"></s:textfield> <s:submit value="Submit"></s:submit> </s:form> </div> <hr> <center><%=footerString%></center> </body> </html>
<template context="com.genuitec.eclipse.wizards.jsp" script="templates/jsp/Struts2_jsp.vtl" name="Standard JSP using Struts 2.X with a form"/>