| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 543 人关注过本帖
标题:求助,关于ASP管理员管理订单出现错误
只看楼主 加入收藏
ai7609
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-1-6
收藏
 问题点数:0 回复次数:1 
求助,关于ASP管理员管理订单出现错误

以下是源码,在倒数第15行左右,附近位置有问题
单鼠标按下订单删除,订单确认,订单发送设置时候老报错!这是为什么啊


出现了运行时间错误.
是否要进行调试?
行218
错误:'document.frmoderfather.subok'为空或不是对象







<% Option Explicit %>
<%
'-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
' 功能:订单处理提交页
' @Language=VBscript
'-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
%>
<!-- #include virtual="/admin/orderForm/_lib/orderform_lib.asp" -->
<!-- #include virtual="/admin/orderForm/oderdetails.asp" -->
<%
Dim RS,Sql,sAdminid,sunGrade,prors,receiverRS,subrs
Dim sStartPage,sPageNum,sRecordNum,i,sOrderid,sim

DB_Connect(strconn)
'---验证身份----
Call AdminCheck
sOrderid=getForm("orderid")
sStartPage=request("stp")
Set RS=oConn.Execute("select * from t_UserOrderCon where Odr_no='"&sOrderid&"'")
if rs.eof and rs.bof then
rs.close
response.redirect("index.asp")
response.end
End if
%>
<HTML>
<HEAD>
<title>网</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<LINK REL="stylesheet" HREF="/inc/css/pub.css" TYPE="TEXT/CSS">
</HEAD>

<BODY BGCOLOR=#ffffff TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
<!--#include virtual="/admin/inc/all_top.asp" -->
<!--#include virtual="/admin/inc/all_first_top.asp" -->
<!--#include virtual="/admin/inc/all_second_top.asp" -->
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=710>
<TR>
<TD COLSPAN=3><IMG SRC="/images/dot.gif" WIDTH="1" HEIGHT="10" BORDER=0 ALT=""></TD>
</TR>
<TR>
<TD WIDTH=170 ALIGN=right VALIGN=top>
<!--#include virtual="/admin/inc/default_left.asp" -->
</TD>
<TD WIDTH=20><IMG SRC="/images/dot.gif" WIDTH="20" HEIGHT="1" BORDER=0 ALT=""></TD>
<TD WIDTH=520 VALIGN=top CLASS=txt >

<HR SIZE=1>
<%
if not rs.eof and not rs.bof then
set prors=oConn.execute("select b.Ste_name,a.List_num,a.Ste_Price from t_UserOrderDetail a,t_GoodsCon b where a.Ste_id=b.Ste_id and a.Odr_no='"&sOrderid&"'")
if not prors.eof and not prors.bof then%>
<FORM name="frmoderfather" METHOD=POST ACTION="oderdetails.asp">
<input type="hidden" name="odrid" value="<% response.write sOrderid%>">
<TABLE CELLSPACING=1 CELLPADDING=1 BORDER=0 WIDTH=100%>
<TR BGCOLOR=#558BFF>
<TD ALIGN=center CLASS=txt width="7%"><FONT COLOR=#ffffff>序号</FONT></TD>
<TD ALIGN=center CLASS=txt width="21%"><FONT COLOR=#ffffff>订购物品名称</FONT></TD>
<TD ALIGN=center CLASS=txt width="15%"><FONT COLOR=#ffffff>订购数量</FONT></TD>
<TD ALIGN=center CLASS=txt width="13%"><font color="#FFFFFF">价格</font></TD>
</TR>
<%
i=1
do while not prors.eof
%>
<TR BGCOLOR=#E1E1E1>
<TD ALIGN=center CLASS=txt width="7%"><% response.write i%></TD>
<TD ALIGN=center CLASS=txt width="21%"><% response.write prors("ste_name")%></TD>
<TD ALIGN=center CLASS=txt width="15%"><% response.write prors("List_num")%></TD>
<TD ALIGN=center CLASS=txt width="13%"><% response.write prors("Ste_Price")%></TD>
</TR>
<%
prors.movenext
i=i+1
loop
prors.close %>
</TABLE>
<HR SIZE=1>
<% end if %>
<TABLE WIDTH=100% BORDER=1 cellspacing="0" cellpadding="3" bordercolordark="#ffffff" bordercolorlight="#666666">
<TR>
<TD ALIGN=right CLASS=txt width="23%" bgcolor="#E1E1E1"><font color="#000000">接收者姓名:</font></TD>
<TD width="77%"><%response.write RS("Odr_recName")%></TD>
</TR>
<TR>
<TD ALIGN=right CLASS=txt width="23%" bgcolor="#E1E1E1"><font color="#000000">接收者Email:</font></TD>
<TD width="77%"><%response.write RS("Odr_email")%></TD>
</TR>
<TR>
<TD ALIGN=right CLASS=txt width="23%" bgcolor="#E1E1E1"><font color="#000000">接收者电话:</font></TD>
<TD width="77%"><%response.write RS("Odr_phone")%></TD>
</TR>
<TR>
<TD ALIGN=right CLASS=txt width="23%" bgcolor="#E1E1E1"><font color="#000000">接收者地址:</font></TD>
<TD width="77%"><%response.write RS("Odr_Address")%></TD>
</TR>
<TR>
<TD ALIGN=right CLASS=txt width="23%" bgcolor="#E1E1E1"><font color="#000000">接收者地址:</font></TD>
<TD width="77%"><%response.write RS("Odr_Address")%></TD>
</TR>
<TR>
<TD ALIGN=right CLASS=txt width="23%" bgcolor="#E1E1E1"><font color="#000000">订单发送状态:</font></TD>
<TD width="77%"><% select case cint(RS("Odr_sendstate"))
Case 1 response.write "全部"
Case 0 response.write "未发送"
End select %></TD>
</TR>
<TR>
<TD ALIGN=right CLASS=txt width="23%" bgcolor="#E1E1E1"><font color="#000000">订购单确认:</font></TD>
<TD width="77%">
<% if cint(RS("Odr_ispass"))=1 then response.write "Y" %>
<% if cint(RS("Odr_ispass"))=0 then response.write "N" %></TD>
</TR>
</TABLE>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<hr size=1>
<input type="hidden" name="subok" value="">
'<a href=orderdetails.asp?action=del&id=<%=id(i)%>><font color="red" onClick="return confirm('您确定要进行删除操作吗?')">删除</font></a>
<input type="button" name="gogook" value="订单删除" onclick="javascript:if(confirm('确认删除吗?')){document.frmoderfather.subok.value='订单删除';document.frmoderfather.submit()}">
<input type="button" name="gogook" value="订单确认" onclick="javascript:document.frmoderfather.subok.value='订单确认';document.frmoderfather.submit();">
<input type="button" name="gogook" value="订单发送设置" onclick="javascript:document.frmoderfather.subok.value='订单发送设置';document.frmoderfather.submit();">
</td>
</tr>
</table>
<BR>
</FORM>
<% End if
rs.close %>
</TD>
</TR>
</TABLE>
<BR>
<!--#include virtual="/inc/default_end.asp" -->
<BR>
</BODY>
</HTML>







搜索更多相关主题的帖子: 订单 管理员 ASP 
2006-03-28 19:38
w374jd
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2006-4-3
收藏
得分:0 
在你给的代码中没有发现关于subok的代码.
是不是在包含文件中.如果是你能不能把包含文件中相关subok的代码发出来.
如果包含文件中也没有的话,那你就把subok去掉.改成
document.frmoderfather.value 试试

域名注册/空间租用/网站制作/ASP编程开发/平面设..有意者,请联系:0429-8994637 QQ:70074004
2006-04-03 14:59
快速回复:求助,关于ASP管理员管理订单出现错误
数据加载中...
 
   



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

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