郁闷死了?
现在能提交了
但为什么提交一下
数据库会出来三个相同的记录啊????????
<div align="center">
<table width="50%" height="500" border="0">
<tr>
<td width="98%"><form name="form1" method="post" onsubmit="Page_Submit();" action="addnews2.asp">
<p align="left">类型:
<select name="types">
<option selected>===请选择类型===</option>
<% do while not rs.EOF %>
<% types=rs("newstypes")
response.Write("<option>"&(types)&"</option>")
%>
<%
rs.MoveNext
loop %>
</select>
</p>
<p align="left">新闻标题:
<input name="title" type="text" size="20">
</p>
<p align="left">日期:
<input name="date" type="text" value="<%=date()%>" size="10">
例如:2007-01-01 </p>
<p align="left">作者:
<input name="name" type="text" size="10">
【<a href="#" onClick="MM_changeProp('name','','value','未知','INPUT/TEXT')">未知</a>】【<a href="#" onClick="MM_changeProp('name','','value','管理员','INPUT/TEXT')">管理员</a>】
</p>
<p align="left"> 来源:
<input name="from" type="text" size="15">
【<a href="#" onClick="MM_changeProp('from','','value','本站原创','INPUT/TEXT')">本站原创</a>】</p>
<p align="left">正文:<br>
<IFRAME ID="eWebEditor1" SRC="et/ewebeditor.asp?id=content1&style=full_v100" FRAMEBORDER="0" SCROLLING="no" WIDTH="630" HEIGHT="450">
</IFRAME></p>
<div align="center">
<input type="submit" name="Submit" onClick="Page_Submit();" value="提交">
<input type="reset" name="Submit" value="重置">
</div>
<textarea name="content1" id="content1" style="display:none "></textarea>
</form>
</td>
</tr>
</table>
</div>
<script language="javascript" >
function Page_Submit()
{
var content1;//文章内容变量
content1=eWebEditor1.getHTML();//获得文章的内容
if(content1=="")
{
alert('文章内容不能为空');
return false;
}
document.form1.content1.value=content1;
document.form1.submit();//提交表单
}
</script>