📄 changesignature.jsp
字号:
<%--
- $Author: 飞鱼
- $Revision: 1.22 $
- $Date: 2003/02/01 09:41:34 $
- http://www.hnedu.net/fiyu
--%>
<%@ page contentType="text/html;charset=utf-8" %>
<%@ page errorPage="fatalerror.jsp"%>
<%@ page import="fiyucore.util.ParamUtil" %>
<%@ page import="fiyuforum.MyUtil" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<%@ include file="inc_common.jsp"%>
<html >
<head>
<title>fiyuForum - 更改签名档</title>
<%@ include file="/fiyuplugin/fiyuforum/meta.jsp"%>
</head>
<link href="<%=contextPath%>/fiyuplugin/fiyuforum/css/style.css" rel="stylesheet" type="text/css">
<script language="JavaScript1.2" src="<%=contextPath%>/fiyuplugin/fiyuforum/js/vietuni.js" type="text/javascript"></script>
<body leftmargin="0" topmargin="0">
<%@ include file="header.jsp"%>
<br/>
<table width="95%" align="center">
<tr class="nav">
<td><img src="<%=contextPath%>/fiyuplugin/fiyuforum/images/nav.gif"></td>
<td width="100%" nowrap> <a class="nav" href="index"><%=fiyuForumConfig.getWebName()%></a> »
<a class="nav" href="myprofile">个人资料</a> » 更改签名档 </td>
</tr>
</table>
<br/>
<%
boolean isPreviewing = ParamUtil.getParameterBoolean(request, "preview");
String signature = ParamUtil.getAttribute(request, "MemberSignature");
if (isPreviewing) { %>
<table class="tborder" width="95%" cellspacing="1" cellpadding="3" align="center">
<tr class="theader">
<td colspan="2">预览</td>
</tr>
<tr class="trow1">
<td><%=MyUtil.filter(signature, false/*html*/, true/*emotion*/, true/*fiyuCode*/, true/*newLine*/, true/*URL*/)%></td>
</tr>
</table>
<br/>
<% } %>
<form action="changesignatureprocess" method="post" name="submitform">
<table class="tborder" width="95%" cellspacing="1" cellpadding="3" align="center">
<tr class="theader">
<td colspan="2">请输入新的签名档:</td>
</tr>
<tr class="trow1">
<td valign="top">签名档:</td>
<td><textarea cols="60" rows="15" name="MemberSignature" onkeyup="initTyper(this);"><%=signature%></textarea></td>
</tr>
<tr>
<td class="trowfinal" colspan="2" align="center">
<input type="hidden" name="preview" value="">
<input type="button" name="previewbutton" value="预览" onclick="preview.value='true'; submitbutton.disabled=true; previewbutton.disabled=true; submitform.action='changesignature'; submit();" class="liteoption">
<input type="button" name="submitbutton" value="更新" onclick="submitbutton.disabled=true; previewbutton.disabled=true; submit();" class="mainoption">
<input type="reset" value="重设" class="liteoption">
</td>
</tr>
</table>
</form>
<br/>
<%@ include file="footer.jsp"%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -