现在的位置: 首页 > 综合 > 正文

导入Struts2标签的语句_s:from示例

2013年12月07日 ⁄ 综合 ⁄ 共 573字 ⁄ 字号 评论关闭

<%@ taglib prefix ="s" uri="/struts-tags"%>

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix ="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<s:form action="mainAction.action">
	<s:textfield id="username" name="username"></s:textfield>
	<s:password id="password" name="password"></s:password>
	<s:submit value="tijiao"></s:submit>
</s:form>
</body>
</html>

抱歉!评论已关闭.