📄 writenewstory.jsp.svn-base
字号:
<%@ page language="java" import="java.util.*,StoryManage.Bll.*,StoryManage.Dal.*" 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">
#TextArea1 {
height: 439px;
width: 607px;
}
</style>
</head>
<body>
<form action="/RegUser/WriteNewStoryCheck.jsp" name="form1" method="post">
<table>
<tr>
<td>
<label>文章标题:</label>
</td>
<td>
<input name="title" type="text">
</td>
</tr>
<tr>
<td>
<label>文章类型:</label>
</td>
<td>
<select id="Select1">
<%
StoryTypeOperate sto=new StoryTypeOperate();
List list = sto.getAllStoryType();
for(int i=0;i<list.size();i++)
{
%>
<option value='<%out.print(((StoryType)list.get(i)).getTypeTitle());%>'><%out.print(((StoryType)list.get(i)).getTypeTitle()); %></option>
<%
}
%>
</select>
</td>
</tr>
<tr>
<td>
<label>内容简介:</label>
</td>
<td>
<textarea name="content" id="TextArea1"></textarea>
</td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="发表"></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -