沙特币:ASP表单验证最出现的各种问题,各位大侠帮忙。

来源:百度文库 编辑:高考问答 时间:2024/05/06 17:49:39
我在做网站的时候出现这么两个情况
1、表单的提交按钮不好用,其原码如下
<form action="admin_art_edit_sv.asp?id=<%=session("id")%>" method="get">
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td height="30" colspan="2" class="admintitle">文章修改</td>
</tr>
<tr>
<td height="25" class="admin">文 章 ID:</td>
<td class="admin"><input name="id" type="text" id="id" value="<%=rs("id")%>" readonly></td>
</tr>
<tr>
<td height="25" class="admin">文章标题:</td>
<td class="admin">  <input name="txt_title" type="text" id="txt_title" value="<%=rs("title")%>"></td>
</tr>
<tr>
<td height="25" class="admin">文章内容:</td>
<td class="admin"> <input type="hidden" name="news_content" value="<%=Server.HTMLEncode(rs("content"))%>">
<iframe id="eWebEditor1" src="ewebeditor.asp?

id=news_content&style=standard&originalfilename=d_originalfilename&savefilename=d_savefilename&savepathfilename=d_savepathfil

ename" frameborder="0" scrolling="no" width="600" height="350"></iframe></td>
</tr>
<tr>
<td height="25" colspan="2" class="admin">
<input type="submit" name="Submit" value="提交">

<input type="reset" name="Submit2" value="重置">
</td>
</tr>
</table>
</form>

method="get"
news_content自然传不到下一页
用post

不好用是什么意思