📄
字号:
范例:SetGetPropertytest.jsp源代码:
001 <%@ page contentType="text/html;charset=gb2312"%>
002 <HTML>
003 <HEAD>
004 <TITLE>setProperty动作与getProperty动作范例</TITLE>
005 </HEAD>
006 <BODY>
007 <font size=5>setProperty动作与getProperty动作范例</font>
008 <HR>
009 <JSP:useBean id="SetGetProperty"
010 scope="request" class="SetGetPropertytest"/>
011 <%
012 SetGetProperty.setName("李四");
013 SetGetProperty.setSex("男");
014 SetGetProperty.setBirthday("1967年8月5日");
015 SetGetProperty.setAddress("湖南省长沙市");
016 SetGetProperty.setTelephone("0731-1234567");
017 out.println("姓名:"+SetGetProperty.getName()+"<br>");
018 out.println("性别:"+SetGetProperty.getSex()+"<br>");
019 out.println("生日:"+SetGetProperty.getBirthday()+"<br>");
020 out.println("住址:"+SetGetProperty.getAddress()+"<br>");
021 out.println("电话:"+SetGetProperty.getTelephone()+"<br>");
022 %>
023 <HR>
024 </BODY>
025 </HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -