跪求JSF页面代码 120
jsp代码如下怎么改写有JSF标记的<%@pagelanguage="java"contentType="text/html;charset=GB18030"pageEn...
jsp代码如下 怎么改写有JSF标记的
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<!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=GB18030">
<title>Insert title here</title>
<style type="text/css">
body{
color : #000 ;
font-size : 12px ;
margin : 0px auto ;
}
</style>
<script type="text/javascript">
function check(form){
//document.forms.form1.username.value取得form1中Username的值 并判断是否为空
if(document.forms.form1.username.value==""){
//如果 为""则弹出提示
alert("pls input username");
//将输入焦点定位到没有输入的地方
document.forms.form1.username.focus();
//返回错误
return false;
}
if(document.forms.form1.password.value==""){
alert("pls input password");
document.forms.form1.password.focus();
return false;
}
}
</script>
</head>
<body>
<form action="LoginServlet" method="post" name="form1">
<table border="1" cellspacing="1" cellpadding="1" bordercolor="silver" align="center">
<tr>
<td colspan="2" align="center" bgcolor="#e8e8e8">用户登陆</td>
</tr>
<tr>
<td>用户名:</td>
<td><input type="text" name="username"/></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password"/></td>
</tr>
<tr>
<td><a href="rsg.jsp" >新用户注册</a></td>
<!-- onclick="return check(this) 调用上面的Script进行验证 -->
<td><input type="submit" name="submit" onclick="return check(this);"/><input type="reset" name="reset"/></td>
</tr>
</table>
</form>
</body>
</html>
不能为空怎么弄出提示,连接sql2000数据库用户表比对并判断是否连接下个网页的javabean 展开
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<!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=GB18030">
<title>Insert title here</title>
<style type="text/css">
body{
color : #000 ;
font-size : 12px ;
margin : 0px auto ;
}
</style>
<script type="text/javascript">
function check(form){
//document.forms.form1.username.value取得form1中Username的值 并判断是否为空
if(document.forms.form1.username.value==""){
//如果 为""则弹出提示
alert("pls input username");
//将输入焦点定位到没有输入的地方
document.forms.form1.username.focus();
//返回错误
return false;
}
if(document.forms.form1.password.value==""){
alert("pls input password");
document.forms.form1.password.focus();
return false;
}
}
</script>
</head>
<body>
<form action="LoginServlet" method="post" name="form1">
<table border="1" cellspacing="1" cellpadding="1" bordercolor="silver" align="center">
<tr>
<td colspan="2" align="center" bgcolor="#e8e8e8">用户登陆</td>
</tr>
<tr>
<td>用户名:</td>
<td><input type="text" name="username"/></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password"/></td>
</tr>
<tr>
<td><a href="rsg.jsp" >新用户注册</a></td>
<!-- onclick="return check(this) 调用上面的Script进行验证 -->
<td><input type="submit" name="submit" onclick="return check(this);"/><input type="reset" name="reset"/></td>
</tr>
</table>
</form>
</body>
</html>
不能为空怎么弄出提示,连接sql2000数据库用户表比对并判断是否连接下个网页的javabean 展开
2个回答
展开全部
head区是指首页HTML代码的<head>和</head>之间的内容。
必须加入的标签
1.公司版权注释
<!---ThesiteisdesignedbyMaketown,Inc06/2000--->
2.网页显示字符集
简体中文:<METAHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=gb2312">
繁体中文:<METAHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=BIG5">
英语:<METAHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=iso-8859-1">
3.网页制作者信息
<METAname="author"content="136z.com">
4.网站简介
<METANAME="DESCRIPTION"CONTENT="xxxxxxxxxxxxxxxxxxxxxxxxxx">
5.搜索关键字
<METANAME="keywords"CONTENT="xxxx,xxxx,xxx,xxxxx,xxxx,">
6.网页的css规范
<LINKhref="style/style.css"rel="stylesheet"type="text/css">
(参见目录及命名规范)
7.网页标题
<title>xxxxxxxxxxxxxxxxxx</title>
可以选择加入的标签
1.设定网页的到期时间。一旦网页过期,必须到服务器上重新调阅。
<METAHTTP-EQUIV="expires"CONTENT="Wed,26Feb199708:21:57GMT">
2.禁止浏览器从本地机的缓存中调阅页面内容。
<METAHTTP-EQUIV="Pragma"CONTENT="no-cache">
3.用来防止别人在框架里调用你的页面。
<METAHTTP-EQUIV="Window-target"CONTENT="_top">
4.自动跳转。
<METAHTTP-EQUIV="Refresh"CONTENT="5;URL=">
5指时间停留5秒。
5.网页搜索机器人向导.用来告诉搜索机器人哪些页面需要索引,哪些页面不需要索引。
<METANAME="robots"CONTENT="none">
CONTENT的参数有all,none,index,noindex,follow,nofollow。默认是all。
6.收藏夹图标
<linkrel="ShortcutIcon"href="favicon.ico">
所有的javascript的调用尽量采取外部调用.
<SCRIPTLANGUAGE="javascript"SRC="script/xxxxx.js"></SCRIPT>
附<body>标签:
<body>标签不属于head区,这里强调一下,为了保证浏览器的兼容性,必须设置页面背景<bodybgcolor="#FFFFFF">
<!--
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
是超链接的属性,表示无下划线
① a:link:未访问链接
② a:visited:已访问链接
③ a:active:激活时(链接获得焦点时)链接的颜色
④ a:hover:鼠标移到链接上时
必须加入的标签
1.公司版权注释
<!---ThesiteisdesignedbyMaketown,Inc06/2000--->
2.网页显示字符集
简体中文:<METAHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=gb2312">
繁体中文:<METAHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=BIG5">
英语:<METAHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=iso-8859-1">
3.网页制作者信息
<METAname="author"content="136z.com">
4.网站简介
<METANAME="DESCRIPTION"CONTENT="xxxxxxxxxxxxxxxxxxxxxxxxxx">
5.搜索关键字
<METANAME="keywords"CONTENT="xxxx,xxxx,xxx,xxxxx,xxxx,">
6.网页的css规范
<LINKhref="style/style.css"rel="stylesheet"type="text/css">
(参见目录及命名规范)
7.网页标题
<title>xxxxxxxxxxxxxxxxxx</title>
可以选择加入的标签
1.设定网页的到期时间。一旦网页过期,必须到服务器上重新调阅。
<METAHTTP-EQUIV="expires"CONTENT="Wed,26Feb199708:21:57GMT">
2.禁止浏览器从本地机的缓存中调阅页面内容。
<METAHTTP-EQUIV="Pragma"CONTENT="no-cache">
3.用来防止别人在框架里调用你的页面。
<METAHTTP-EQUIV="Window-target"CONTENT="_top">
4.自动跳转。
<METAHTTP-EQUIV="Refresh"CONTENT="5;URL=">
5指时间停留5秒。
5.网页搜索机器人向导.用来告诉搜索机器人哪些页面需要索引,哪些页面不需要索引。
<METANAME="robots"CONTENT="none">
CONTENT的参数有all,none,index,noindex,follow,nofollow。默认是all。
6.收藏夹图标
<linkrel="ShortcutIcon"href="favicon.ico">
所有的javascript的调用尽量采取外部调用.
<SCRIPTLANGUAGE="javascript"SRC="script/xxxxx.js"></SCRIPT>
附<body>标签:
<body>标签不属于head区,这里强调一下,为了保证浏览器的兼容性,必须设置页面背景<bodybgcolor="#FFFFFF">
<!--
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
是超链接的属性,表示无下划线
① a:link:未访问链接
② a:visited:已访问链接
③ a:active:激活时(链接获得焦点时)链接的颜色
④ a:hover:鼠标移到链接上时
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
展开全部
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
<style type="text/css">
body{
color : #000 ;
font-size : 12px ;
margin : 0px auto ;
}
</style>
<script type="text/javascript">
function check(form){
//document.forms.form1.username.value取得form1中Username的值 并判断是否为空
if(document.forms.form1.username.value==""){
//如果 为""则弹出提示
alert("pls input username");
//将输入焦点定位到没有输入的地方
document.forms.form1.username.focus();
//返回错误
return false;
}
if(document.forms.form1.password.value==""){
alert("pls input password");
document.forms.form1.password.focus();
return false;
}
}
</script>
</head>
<body>
<h:dataTable value = "#{table.userList}" var = "user">
<h:column>
<f:facet name="username">用户名</f:facet>
<h:outputText value = "#{user.name}"></h:outputText>
</h:column>
<h:column>
<f:facet name="password">密码</f:facet>
<h:outputText value = "#{user.password}"></h:outputText>
</h:column>
</h:dataTable>
</body>
</html>
jsf的form是通过List提交过来的。
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
<style type="text/css">
body{
color : #000 ;
font-size : 12px ;
margin : 0px auto ;
}
</style>
<script type="text/javascript">
function check(form){
//document.forms.form1.username.value取得form1中Username的值 并判断是否为空
if(document.forms.form1.username.value==""){
//如果 为""则弹出提示
alert("pls input username");
//将输入焦点定位到没有输入的地方
document.forms.form1.username.focus();
//返回错误
return false;
}
if(document.forms.form1.password.value==""){
alert("pls input password");
document.forms.form1.password.focus();
return false;
}
}
</script>
</head>
<body>
<h:dataTable value = "#{table.userList}" var = "user">
<h:column>
<f:facet name="username">用户名</f:facet>
<h:outputText value = "#{user.name}"></h:outputText>
</h:column>
<h:column>
<f:facet name="password">密码</f:facet>
<h:outputText value = "#{user.password}"></h:outputText>
</h:column>
</h:dataTable>
</body>
</html>
jsf的form是通过List提交过来的。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询