yaya
我原以为,孩子天真纯朴的念头像流星一样会转瞬即逝,现在我明白,这绝不是流星,而是一颗心,这颗心比大人们更真诚更纯洁。
BlogJava
首页
新随笔
新文章
联系
聚合
管理
posts - 27, comments - 37, trackbacks - 0
关于
元素与
/
的嵌套问题
reg.html
1
2
<
html
>
3
<
head
>
4
<
title
>
reg.html
</
title
>
5
6
<
meta
http-equiv
="keywords"
content
="keyword1,keyword2,keyword3"
>
7
<
meta
http-equiv
="description"
content
="this is my page"
>
8
<
meta
http-equiv
="content-type"
content
="text/html; charset=GB2312"
>
9
10
<!--
<link rel="stylesheet" type="text/css" href="./styles.css">
-->
11
12
</
head
>
13
14
<
body
>
15
<
form
method
="post"
action
="reg.jsp"
>
16
<
table
>
17
<
tbody
><
tr
>
18
<
td
>
用户名:
</
td
>
19
<
td
><
input
type
="text"
name
="name"
>
<
br
></
td
></
tr
>
20
<
tr
>
21
<
td
>
性别:
</
td
>
22
<
td
>
<
input
type
="radio"
value
="1"
name
="sex"
checked
="checked"
>
男
<
input
type
="radio"
value
="0"
name
="sex"
>
女
</
td
></
tr
>
23
<
tr
>
24
<
td
>
学历:
</
td
>
25
<
td
>
<
select
size
="1"
name
="education"
>
26
<
option
value
="高中"
>
高中
</
option
>
27
<
option
value
="大学"
>
大学
</
option
>
28
<
option
value
="硕士"
>
硕士
</
option
>
29
<
option
value
="博士"
>
博士
</
option
>
30
</
select
>
31
32
</
td
></
tr
>
33
<
tr
>
34
<
td
>
Email:
</
td
>
35
<
td
><
input
type
="text"
name
="mail"
>
<
br
></
td
></
tr
>
36
<
tr
>
37
<
td
>
<
input
type
="reset"
value
="重填"
></
td
>
38
<
td
>
<
input
type
="submit"
value
="提交"
></
td
></
tr
>
39
</
tbody
></
table
>
40
</
form
>
41
</
body
>
42
</
html
>
43
以上是表单页面reg.html。
1
2
<%
@ page contentType
=
"
text/html; charset=GB2312
"
%>
3
<%
request.setCharacterEncoding(
"
GB2312
"
);
%>
4
<
jsp:useBean
id
="user"
scope
="session"
class
="test.ch13.UserBean"
/>
5
<
jsp:setProperty
name
="user"
property
="*"
/>
6
<
jsp:setProperty
name
="user"
property
="email"
param
="mail"
/>
7
8
注册成功。
<
br
>
9
以上为表单提交处理reg.jsp。
1
<%
@ page contentType
=
"
text/html; charset=GB2312
"
%>
2
<
jsp:useBean
id
="user"
scope
="session"
class
="test.ch13.UserBean"
/>
3
您的姓名:
<
jsp:getProperty
name
="user"
property
="name"
/><
br
>
4
您的性别:
<%
5
int
sex
=
user.getSex();
6
if
(sex
==
1
)
7
out.println(
"
男
"
);
8
else
if
(sex
==
0
)
9
out.println(
"
女
"
);
10
%>
<
br
>
11
您的学历:
<
jsp:getProperty
name
="user"
property
="education"
/><
br
>
12
您的E-mail:
<
jsp:getProperty
name
="user"
property
="email"
/>
13
14
以上为表单信息显示页面UserInfo.jsp。
1、若在reg.jsp文件中,将<jsp:useBean />元素换成<jsp:useBean></jsp:useBean>的形式,将<jsp:setProperty>元素包含进来,那么在访问的时候,在UserInfo.jsp页面中始终出现的是第一次输入的信息,不会改变,因为在第二次请求reg.jsp页面时,<jsp:useBean>从session中找到了先前保存的user对象,于是就不会再执行被包含在<jsp:useBean>中的<jsp:setProperty>元素。
2、同样,如果在UserInfo.jsp文件中,若将<jsp:useBean />元素换成<jsp:useBean></jsp:useBean>的形式,将<jsp:setProperty>元素包含进来,那么由于,<jsp:useBean>从session中找到了先前保存的user对象,于是就不会再执行被包含在<jsp:useBean>中的<jsp:getProperty>元素,页面不会显示任何信息。
所以,在使用<jsp:useBean>元素时,采用何种方式应值得注意。
小时候家的对面有一座山,山的上面就是蓝天,所以总是幻想着有一天站到山顶用手摸一下蓝天……
posted on 2008-10-17 14:59
丫丫
阅读(1053)
评论(0)
编辑
收藏
所属分类:
jsp
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
mysql中BLOB数据的输入与输出
关于
元素与
/
的嵌套问题
开发线程安全的servlet
session与cookie
表单提交时使用POST
jsp中文显示乱码解决方案
Unable to load tag handler class "XXX" for tag "XXX"错误原因。
Mandatory TLD element missing or empty: jsp-version的解决
<
2008年10月
>
日
一
二
三
四
五
六
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔分类
(25)
acm(1)
Eclipse(7)
e路通
jsp(8)
mysql(3)
struts(3)
资料网摘(3)
随笔档案
(27)
2008年12月 (1)
2008年11月 (1)
2008年10月 (14)
2008年7月 (5)
2008年4月 (2)
2007年11月 (3)
2007年10月 (1)
文章分类
acm
Eclipse
e路通
jsp
搜索
最新评论
1. re: 在Eclipse中创建Struts2项目
@柱子
就是在创建项目那个页面
--树子
2. re: 在Eclipse中创建Struts2项目
就是我配置了没有看到STRUTS这个配置呀
--温神
3. re: SQL中char、varchar、text和nchar、nvarchar、ntext的区别
wq
--12
4. re: jsp中文显示乱码解决方案
您好!我的问题也是在mysql数据库中出现了乱码,中文不能正常显示全部变成了???我的邮箱是wh623493442@163.com ,谢谢您!
--S070273079
5. re: jsp中文显示乱码解决方案
你好,我在mysql数据库中出现了乱码,中文不能正常显示全部变成了???希望你能给你点建议我的qq号是1282236828谢谢。
--IT
阅读排行榜
1. jsp中文显示乱码解决方案(50376)
2. 用eclipse创建一个简单的servlet小程序(5378)
3. struts error:cannot find actionmappings or actionformbeans collection (4920)
4. Unable to load tag handler class "XXX" for tag "XXX"错误原因。(4588)
5. eclipse中tomcat不能启动了(4505)
评论排行榜
1. jsp中文显示乱码解决方案(9)
2. 在Eclipse中创建Struts2项目(4)
3. struts error:cannot find actionmappings or actionformbeans collection (4)
4. Unable to load tag handler class "XXX" for tag "XXX"错误原因。(3)
5. 表单提交时使用POST(3)