| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 689 人关注过本帖
标题:[求助] 错误类型(0X80020009)发生意外
只看楼主 加入收藏
header
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2006-8-17
收藏
 问题点数:0 回复次数:1 
[求助] 错误类型(0X80020009)发生意外

错误类型:
(0x80020009)
发生意外。
/ebuy/admin/editorder.asp, 第 142 行

浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon)


源代码: 第142行我用红颜色标记出来了.请哪位大侠帮我看看
<!--#include file="conn.asp"-->
<%if session("admin")="" then
response.Write "<script language='javascript'>alert('请先登录!');history.go(-1);</script>"
response.End
else
if session("rank")=3 then
response.Write "<div align=center><font size=5 color=red><b>你的权限不够!</b></font></div>"
response.End
end if
end if
%>
<title>订单管理</title>
<SCRIPT LANGUAGE="JavaScript">
<!--
function checkk()
{
if(checkspace(document.form2.searchkey.value)) {
document.form2.searchkey.focus();
alert("请输入查询关键字!");
return false;
}
document.form2.submit();
}

//-->
</script>
<%dim state,namekey
namekey=trim(request.form("namekey"))
state=trim(request.form("state"))
if state="" then state=request.QueryString("state")
if namekey="" then namekey=request.querystring("namekey")
%>
<table width="98%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#6699cc">
<tr>
<td align="center"><font color="#FFFFFF">管理商品订单</font></td>
</tr>
<tr>
<td height="167" valign="top" bgcolor="#FFFFFF"> <table width="90%" border="0" align="center" cellpadding="2" cellspacing="1">
<tr>
<td align="right">
<select name="select" onChange="var jmpURL=this.options[this.selectedIndex].value ; if(jmpURL!='') {window.location=jmpURL;} else {this.selectedIndex=0 ;}" ><base target=Right>
<option value="editorder.asp?state=0" >全部订单状态</option>
<option value="editorder.asp?state=1" >用户已划出款</option>
<option value="editorder.asp?state=2" >未作任何处理</option>
<option value="editorder.asp?state=3" >服务商已收到款</option>
<option value="editorder.asp?state=4" >服务商已发货</option>
<option value="editorder.asp?state=5" >用户已经收到货</option>
</select>
</td>
</tr>
</table>
<%
Const MaxPerPage=12
dim totalPut
dim CurrentPage
dim TotalPages
dim j
dim sql
if Not isempty(request("page")) then
currentPage=Cint(request("page"))
else
currentPage=1
end if
set rs=server.CreateObject("adodb.recordset")
if(state=0) then
rs.open "select * from orders ",conn,1,1
else rs.open "select * from orders where state="&state&"",conn,1,1
end if
if namekey="" then
%>
<!--#
<select name="select" onChange="var jmpURL=this.options[this.selectedIndex].value ; if(jmpURL!='') {window.location=jmpURL;} else {this.selectedIndex=0 ;}" ><base target=Right>
<option value="editorder.asp?state=0" >全部订单状态</option>
<option value="editorder.asp?state=1" >未作任何处理</option>
<option value="editorder.asp?state=2" >用户已划出款</option>
<option value="editorder.asp?state=3" >服务商已收到款</option>
<option value="editorder.asp?state=4" >服务商已发货</option>
<option value="editorder.asp?state=5" >用户已经收到货</option>
</select>
-->
<%
end if

if err.number<>0 then
response.write "数据库中暂时无数据"
end if

if rs.eof And rs.bof then
Response.Write "<p align='center' class='contents'> 对不起,您选择的状态目前还没有订单!</p>"
else
totalPut=rs.recordcount

if currentpage<1 then
currentpage=1
end if

if (currentpage-1)*MaxPerPage>totalput then
if (totalPut mod MaxPerPage)=0 then
currentpage= totalPut \ MaxPerPage
else
currentpage= totalPut \ MaxPerPage + 1
end if
end if

if currentPage=1 then
showContent
showpage totalput,MaxPerPage,"editorder.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showContent
showpage totalput,MaxPerPage,"editorder.asp"
else
currentPage=1
showContent
showpage totalput,MaxPerPage,"editorder.asp"
end if
end if
end if

sub showContent
dim i
i=0

%>
<table width="90%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#CCCCCC">
<tr bgcolor="#FFFFFF" align="center">
<td>订单号</td>
<td>下单用户</td>
<td>订货人姓名</td>
<td>金额总计</td>
<td> 付款方式</td>
<td> 收货方式</td>
<td > 订单状态</td>
</tr>
<%do while not rs.eof
dim shop,username,rs2
set shop=server.CreateObject("adodb.recordset")
shop.open "select username from [user] where userid="&rs("userid"),conn,1,1
username=trim(shop("username"))
shop.close
%>
<tr bgcolor="#FFFFFF" align="center">
<td>&nbsp;<a href=# onClick="javascript:window.open('vieworder.asp?dan=<%=trim(rs("goods"))%>&username=<%=username%>','','width=710,height=388,toolbar=no, status=no, menubar=no, resizable=yes, scrollbars=no');return false;"><%=trim(rs("goods"))%></a></td>
<td><%=username%></td>
<td><%=trim(rs("realname"))%></td>
<td><%
shop.open "select sum(paid) as paid,sum(score) as score from orders where goods='"&trim(rs("goods"))&"' ",conn,1,1
set rs2=server.CreateObject("adodb.recordset")
rs2.open "select * from delivery where deliveryid="&rs("deliverymethord"),conn,1,1
response.write "<font color=#FF6600>"&shop("paid")+rs2("fee")&"元</font>"
rs2.close
shop.close
set shop=nothing
%>

</td>
<td> <%
rs2.open "select * from delivery where deliveryid="&int(rs("paymethord")),conn,1,1
if rs2.eof and rs2.bof then
response.write "方式已被删除"
else
response.Write trim(rs2("subject"))
end if
rs2.Close
set rs2=nothing
%>
</td>
<td> <%
set rs2=server.CreateObject("adodb.recordset")
rs2.Open "select * from delivery where deliveryid="&int(rs("deliverymethord")),conn,1,1
if rs2.eof and rs2.bof then
response.write "方式已被删除"
else
response.Write trim(rs2("subject"))
end if
rs2.close
set rs2=nothing%> </td>
<td> <%
select case rs("state")
case "1"
response.write "未作任何处理"
case "2"
response.write "未作任何处理"
case "3"
response.write "服务商已收到款"
case "4"
response.write "服务商已发货"
case "5"
response.write "用户已经收到货"
end select%> </td>
</tr>
<%i=i+1
if i>=MaxPerPage then Exit Do
rs.movenext
loop
rs.close
set rs=nothing%>
</table>
<%
End Sub

Function showpage(totalnumber,maxperpage,filename)
Dim n

If totalnumber Mod maxperpage=0 Then
n= totalnumber \ maxperpage
Else
n= totalnumber \ maxperpage+1
End If
if namekey="" then
Response.Write "<form method=Post action="&filename&"?state="&state&">"
else
Response.Write "<form method=Post action="&filename&"?state="&state&"&namekey="&namekey&">"
end if
Response.Write "<p align='center' class='contents'> "
If CurrentPage<2 Then
Response.Write "<font class='contents'>首 页 上一页</font> "
Else
if namekey="" then
Response.Write "<a href="&filename&"?page=1&state="&state&" class='contents'>首 页</a> "
Response.Write "<a href="&filename&"?page="&CurrentPage-1&"&state="&state&" class='contents'>上一页</a> "
ELSE
Response.Write "<a href="&filename&"?page=1&state="&state&"&namekey="&namekey&" class='contents'>首 页</a> "
Response.Write "<a href="&filename&"?page="&CurrentPage-1&"&state="&state&"&namekey="&namekey&" class='contents'>上一页</a> "
end if
End If
If n-currentpage<1 Then
Response.Write "<font class='contents'>下一页 末 页</font>"
Else
if namekey="" then
Response.Write "<a href="&filename&"?page="&(CurrentPage+1)&"&state="&state&" class='contents'>"
Response.Write "下一页</a> <a href="&filename&"?page="&n&"&state="&state&" class='contents'>末 页</a>"
else
Response.Write "<a href="&filename&"?page="&(CurrentPage+1)&"&state="&state&"&namekey="&namekey&" class='contents'>"
Response.Write "下一页</a> <a href="&filename&"?page="&n&"&state="&state&"&namekey="&namekey&" class='contents'>末 页</a>"
end if
End If
Response.Write "<font class='contents'> 页次:</font><font class='contents'>"&CurrentPage&"</font><font class='contents'>/"&n&"页</font> "
Response.Write "<font class='contents'> 共有"&totalnumber&"笔订单 "&maxperpage&"笔订单/页</font> "
Response.Write "<font class='contents'>转到:</font><input type='text' name='page' size=2 maxlength=10 class=smallInput value="&currentpage&">"
Response.Write "&nbsp;<input type='submit' class='contents' value='跳转' name='cndok'></form>"
End Function
%>
<br> </td>
</tr>
</table>
<br>
<table width="98%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#6699cc">
<tr>
<td height="20" align="center"><font color="#FFFFFF">定单查询</font></td>
</tr>
<tr>
<td height="34" bgcolor="#FFFFFF">
<table width="100%" border="0" align="center" cellpadding="1" cellspacing="1">
<tr align="center">
<form name="form1" method="post" action="editorder.asp">
<td>按下单用户查询
<input name="namekey" type="text" id="namekey2" value="请输入用户名" size="14" onFocus="this.value=''">
<select name="state" id="select">
<option value="0" >全部订单状态</option>
<option value="1" >未作任何处理</option>
<option value="2" >用户已划出款</option>
<option value="3" >服务商已收到款</option>
<option value="4" >服务商已发货</option>
<option value="5" >用户已经收到货</option>
</select>
&nbsp;
<input type="submit" name="Submit" value="查 询">
</td>
</form>
<form name="form2" method="post" action="../vworder.asp">
<td>
订 单 号:<input name="searchkey" type="text" id="searchkey" size="30">
<input type="submit" name="Submit3" value="查 找" onclick="return checkk();">
</td> </form>
</tr>
</table></td>
</tr>
</table>
<!--#include file="footer.asp"-->

搜索更多相关主题的帖子: 错误类型 Maxthon 源代码 浏览器 
2006-08-17 13:12
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
是不是没有记录
2006-08-17 13:38
快速回复:[求助] 错误类型(0X80020009)发生意外
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025578 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved