📄 wenzhang_write.asp
字号:
<!--#include file="css.asp"-->
<!--#include file="session.asp"-->
<body >
<script laguage="javascript">
<!--
function form1_onsubmit()
{
if (document.form1.dy_title.value=="")
{
alert("请输入标题!")
document.form1.dy_title.focus()
return false
}
else if(document.form1.dy_content.value=="")
{
alert("请输入文章内容!")
document.form1.dy_content.focus()
return false
}
else if(document.form1.dy_source.value=="")
{
alert("请输入文章来源!")
document.form1.dy_source.focus()
return false
}
else if(document.form1.dy_author.value=="")
{
alert("请输入作者!")
document.form1.dy_authort.focus()
return false
}
}
-->
</script>
<form name="form1" action="wenzhang_save.asp" method="post" onsubmit="return form1_onsubmit()">
<table border="0" cellpadding="0" cellspacing="1" width="516" bgcolor="#CCCCCC" height="244">
<tr>
<td bgcolor="#FFFFFF" colspan="2" align="center" width="510" height="18">文章录入</td>
</tr>
<tr>
<td bgcolor="#FFFFFF" width="109" align="right" height="25">标题:</td>
<td bgcolor="#FFFFFF" width="397" height="25"><input type="text" name="dy_title" size="20"></td>
</tr>
<tr>
<td bgcolor="#FFFFFF" width="109" align="right" height="25">来源:</td>
<td bgcolor="#FFFFFF" width="397" height="25"><input type="text" name="dy_source" size="20"></td>
</tr>
<tr>
<td bgcolor="#FFFFFF" width="109" align="right" height="25">作者:</td>
<td bgcolor="#FFFFFF" width="397" height="25"><input type="text" name="dy_author" size="20"></td>
</tr>
<tr>
<td bgcolor="#FFFFFF" width="109" align="right" height="25">时间:</td>
<td bgcolor="#FFFFFF" width="397" height="25"> <%=date()%> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF" width="109" align="right" height="94">文章内容:</td>
<td bgcolor="#FFFFFF" width="397" height="94" valign="top" align="left"><textarea name="dy_content" cols="60" rows="15" ></textarea></td>
</tr>
<tr>
<td bgcolor="#FFFFFF" width="506" align="center" colspan="2" height="18"><input type="submit" value="提交" name="submit">
<input type="reset" value="取消" name="reset"></td>
</tr>
</table>
</form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -