至少一个参数没有被指定值 MyOrders.asp, 第 104 行

来源:百度知道 编辑:UC知道 时间:2024/05/28 16:38:13
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="inc/conn_class.asp"-->
<!--#include file="inc/const.asp"-->
<!--#include file="inc/conn1.asp"-->
<html>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="430" valign="top"><table width="96%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td height="25" colspan="4" bgcolor="#FFFFFF">以下是 <%= session("user_name") %> 的所有运单:</td>
</tr>
<tr>
<td width="

你是在本地测试出错吗?那就是这里了session("User_Name")
你的session是怎么写入的?登陆时写的吗?那你先登陆再测试。。。

你最好在页前面加个CHECK页面

<html>
<%if session("User_Name")="" then %>
<script>
alert("您还没有登陆或者登陆超时,请登陆后再操作……");
document.location.href="login.asp";
</script>
<% else %>
...正文
<%end if%>
</html>