这是我下的一个wap程序,不能添加公告,源码如下:<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%response.buffer=true%>
<%Response.ContentType = "text/vnd.wap.wml; charset=utf-8"%><?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<!--#include file="conn.inc"-->
<!--#include file="66hc-sb.asp"-->
<wml>
<head>
<meta http-equiv="Cache-Control" content="no-Cache"/>
<meta http-equiv="Cache-Control" content="max-age=0"/>
<meta http-equiv="Expires" content="Mon, 1 Jan 1990 00:00:00 GMT"/>
</head>
<card id="main" title="添加公告" >
<p>
<%cw=dlubb(request("cw"))
cz=dlubb(request("cz"))%>
<%if cz="" then%>
公告标题<br/>
<input name='nam' title='公告标题'/><br/>
公告内容<br/>
<input name='txt<%=minute(now)%><%=second(now)%>' title='公告内容'/><br/>
全部不能留空<br/>
<anchor>[确定提交]<go href='tjgg.asp?sb=<%=sb%>&cz=1' method='post' accept-charset='utf-8'>
<postfield name='nam' value='$(nam)'/>
<postfield name='txt' value='$(txt<%=minute(now)%><%=second(now)%>)'/>
</go></anchor>
<%elseif cz="1" then
nam=request("nam")
if nam="" then response.redirect "tjgg.asp?sb="&sb&"&cw=1&ok="&lx&""
txt=request("txt")
if txt="" then response.redirect "tjgg.asp?sb="&sb&"&cw=2&ok="&lx&""
'---开始增加----
set rs=Server.CreateObject("ADODB.Recordset")
rspl="select * from 66hc_gg order by tm asc"
rs.open rspl,conn,1,2
if nam=rs("name") then response.redirect "tjgg.asp?sb="&sb&"&cw=5&ok="&lx&""
rs.addnew
if nam<>"" then rs("name")=nam
if txt<>"" then rs("txt")=txt
rs.update
'---关闭数据----
rs.close
set rs=nothing
%>
成功增加名为<u>[<%=nam%>]</u>的公告<br/>
添加成功
<%else%>
未知错误
<%end if%>
<br/>————————<br/>
<a href="sqgg.asp?fs=<%=fs%>&sb=<%=sb%>">返回公告管理</a><br/>
<a href="d_i.asp?fs=<%=fs%>&sb=<%=sb%>">返回管理首页</a><br/>
<a href="/index.asp?fs=<%=fs%>&sb=<%=sb%>">返回网站首页</a><br/>
报时:<%=time%>
</p></card></wml>
求求那位老大给个解决办法吧,我将永久感激,谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢
参考资料:酒鬼的乐趣
错误类型:(0x80020009)发生意外。\/admin\/tjgg.asp, 第 37 行
rs.open rspl,conn,1,2 错误 改成:rs.open rspl,conn,3,3 即可 参考资料:酒鬼的乐趣
错误类型:(0x80020009)发生意外。
内存读写错误或运用程序错误,重新安装程序,或跟换内存就能解决
错误类型:(0x80020009)发生意外。
table>
错误类型:(0x80020009) 发生意外
if rs("vipdate")<>"" then 改成 if not rs.EOF then if rs("vipdate")<>"" then 因为可能根被没有搜索出记录 希望我的回答能够帮到你 祝好运!
关于ASP的错误类型:(0x80020009)发生意外。
& rs1("name") & ""'rs1.movenext 此处用上就出现:错误类型:(0x80020009)发生意外 next 改为 do while not rs1.eof Response.write "强:" & rs1("name") & ""rs1.movenext loop
asp程序删除信息出现这个错误"错误类型:(0x80020009) 发生意外"
如果你是判断rs("tupian")的值是否为空,应该写成if rs("tupian")<>"" then 如果你是判断该值是否是0,应该写成if rs("tupian")<>0 then
关于ASP的错误类型:(0x80020009)发生意外问题
if not shop.eof and not shop.bof then'最好加上这句,这样就不会出现意外了,如果没有查到数据你在下面调用shop记录集的值,那必错不疑 username=trim(shop("username"))end if shop.close wend '这里要结束你上面的while循环,好像你也没有,真惨 rs.close === 网站名称:唯创网络 网站域名...
急啊!高手帮忙!错误类型:(0x80020009)发生意外
for i=0 to ubound(CCcart,2)if CCcart(CC_ProductID,i) = cstr(Recordset1("gift_id")) then CCcart(CC_Quantity,i) = CCcart(CC_Quantity,i) + 1 isFound=true exit for end if 这里面有错误
asp类型:(0x80020009)发生意外的解决,请高手帮帮忙!
错误的是判断 Request.Cookies 是否为空 If Request.Cookies<>"" Then 错误的是这个代码,我也遇到了。。。 是由于客户的浏览器中存储的你的网站的cookie内容超出了你的iis最大请求实体主体限制 ASPMaxRequestEntityAllowed iis最大请求实体主体限制 改成200M 或者可能是在对你的网站进行攻击 ...
ASP登录错误:错误类型:(0x80020009)发生意外
if Conn.Execute("Select UserPass From [Wo_Users] where UserName='"&CookieUserName&"'")(0)<>session("pass") then 《就是这里出错误》=== 改成这样试试:if Conn.Execute("Select * From [Wo_Users] where UserName='"&CookieUserName&"'")(0)<>session("pass") then === 很明显...