请帮我看看我的网页那里错了,总是报“405 Method not allowed”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请帮我看看我的网页那里错了,总是报“405 Method not allowed”相关的知识,希望对你有一定的参考价值。

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#Include File="inc/conn.Asp"-->
<%
set rst=Server.CreateObject("adodb.recordset")
if request.QueryString("act")="yanzheng" then
'登录
sql="select * from DB_Battle_Event where ID='" & request.Form("username") & "'"
sql=sql & " and passwd='" & request.Form("userpwd") & "'"
rst.open sql,conn,1,1
if rst.recordcount>0 then
session("user")=rst("ID")
'用这个SESSION变量表示用户是否已经登录
session("acc")=true
else
response.write "用户名或密码错误!登录不成功!"
end if
rst.close
elseif request.QueryString("act")="loginout" then
'退出登录
session("user")=""
session("acc")=false
end if
%>
<%
if not session("acc") then
%>
<form id="form1" name="form1" method="post" action="yanzheng?act=yanzheng&id="username"">
用户名:
<input name="username" type="text" id="username" />
<br />
密  码:
<input name="userpwd" type="password" id="userpwd" />
<br />
<input type="submit" name="Submit" value="登录" />
</form>
<%
else
%>
<%=session("user")%>,欢迎你再次到来!<br />
<a href="/yanzheng.asp?act=loginout">退出登录</a>
<%
end if
%>

<tr>
<td width="40">

<div align="center">
<%
if not session("acc") then
%>
您还没有登录,不能查看会员功能!<br />
<%
else
%>
您的信息如下如下:
<table width="480" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="24%" align="center">推荐次数</td>
<td width="21%" align="center">注册时间</td>
<td width="22%" align="center">推荐的第一位玩家</td>
<td width="33%" align="center">推荐的第二位玩家</td>
</tr>
<%
rst.close
rst.open "select * from yanzheng where y_id=" & request.QueryString("ID") & "",conn,1,1
%>
<tr>
<td align="center"><%=rst("tuijian")%></td>
<td align="center"><%=rst("regtime")%></td>
<td align="center"><%=rst("one")%></td>
<td align="center"><%=rst("two")%></td>
</tr>
</table>
<%
end if
%>
<%
set rst=nothing
conn.close
set conn=nothing
%>
篇幅有限只帖出了重要的代码,请各位帮我分析一下
我是在自己的虚拟机上装的2K+IIS5.5,绝对是支持ASP的,其他页面也没有问题,
这个可以显示,但输入账号密码以后就提示错误了>_<

恩,405(错误代码)请求方法(GET、POST、HEAD、DELETE、PUT、TRACE等)对指定资源不适用。
有很多原因:
1,引用webservice的名称写错
2,如果你是调用其它域的数据,应该是不允许跨域访问
参考技术A 代码没错!
是你的空间不支持ASP脚本运行!

计算错误,请帮我看看?

【中文标题】计算错误,请帮我看看?【英文标题】:Calculation error, help me find please? 【发布时间】:2011-11-01 23:20:03 【问题描述】:

我正在我的网站上运行订阅。 我有 1、3、6 和 12 个月的订阅,我希望用户能够随时更改订阅。 但是,我需要计算用户必须支付的金额,如果他或她注册了较短的期限,而不是相对便宜、较长的期限。

我创建了这个函数optimized_subscription_total($active_sub_time,$arr_sub_values),以便它准确地返回这笔钱。

<?php 


function optimized_subscription_total($active_sub_time,$arr_sub_values)


    // This function takes a row from the DB where prices for each period of time usage is listed. there are prices for 1 month, 3 months,6 and 12 months.

    // when the user has subscribed for 12 months, and the user asks for a refund, after they used 9 months and 6 days for example, the system treats the refund as if they subscribed for (in months) COST_6 + COST_3 + (COST_1/30)*6 
    // the result of the function is then subtracted from the amount they actually paid and is considered the refund.

    // $arr_sub_values is the associative row from the DB, containing the prices
    // $active_sub_time is measured in months and is a double

$result=0;


while(($active_sub_time-12)>=0)

    $active_sub_time-=12;
    $result+=($arr_subscription_values['COST_12']);


while(($active_sub_time-6)>=0)

    $active_sub_time-=6;
    $result+=($arr_subscription_values['COST_6']);

while(($active_sub_time-3)>=0)

    $active_sub_time-=3;
    $result+=($arr_subscription_values['COST_3']);


while(($active_sub_time-1)>=0)

    $active_sub_time-=1;
    $result+=($arr_subscription_values['COST_1']);


if($active_sub_time>0)
    $result+=($active_sub_time)*($arr_subscription_values['COST_1']);

return $result;





$datetime1 = date_create('2009-12-11');
$datetime2 = date_create('2010-11-09');
$interval = date_diff($datetime1, $datetime2);
$num_of_months = ($interval->format('%y'))*12+($interval->format('%m'))+($interval->format('%a'))/30;
echo "<br />";

$v = array('COST_1'=>'3.99','COST_3'=>'9.99','COST_6'=>'15.99','COST_12'=>'25.99');
echo "OPT value for $num_of_months months=" . optimized_subscription_total($num_of_months, $v);


?>

奇怪的是,我在刷新此代码后 仅在 7 到 10 次后才出现错误。 所以我得到了:

OPT value for 10 months=M.97

因此在这里。我想我需要一个浮点数,不是吗?

我期待函数的结果应该是“10 个月的 OPT 值 = 29.97”,因为它应该需要 COST_6 + COST_3 + COST_1... 但我得到了那个奇怪的 M.97,有时像 POKHHHG .97

【问题讨论】:

他从什么变成什么?例如,我订阅了 12 个月,我订阅了第 2 个月,现在我将订阅更改为 3 个月,您将所有这些值存储在哪里? 这只是有关此功能用途的一些概述。如果您全年(12 个月)支付 25.99,并在 7 个月后进行纾困或升级,则视为您拥有 6 个月 + 1 个月。并从您已经支付的先前 25.99 中获得退款。在这里你可以看到它是:refund=25.99-(15.99+3.99)=6.01 如果你把这个函数运行起来,10次后你可以看到输出是错误的。比如“10 个月的 OPT 值=M.97”,其中 M.97 很奇怪。我正在试图找出是什么原因造成的。 我没有测试代码,因为我目前没有PHP服务器,如果还有问题,请告诉我。 是的。仍然发生......这一定是内存泄漏 【参考方案1】:

我会将逻辑更改为以下内容,看看是否仍然产生错误。我认为这更清晰且易于调试。这和你的一样,只是解释不同。

while($active_sub_time>=12)

    $active_sub_time-=12;
    $result+=($arr_subscription_values['COST_12']);


while($active_sub_time>=6)

    $active_sub_time-=6;
    $result+=($arr_subscription_values['COST_6']);

while($active_sub_time>=3)

    $active_sub_time-=3;
    $result+=($arr_subscription_values['COST_3']);


while($active_sub_time>=1)

    $active_sub_time-=1;
    $result+=($arr_subscription_values['COST_1']);

我还会在内部函数顶部添加调试代码。

echo "<br>$active_sub_time" // debug code include at the top

这会给你一个想法,如果有任何垃圾被发送到函数本身。

如果上述方法不能解决问题,我还会在所有 while 块中添加此测试功能。

if (!is_numeric($result))

    echo"<br> Bug occurred";break; // print other values if necessary

【讨论】:

感谢@鳄鱼猎人,我刚刚将 is_numeric 添加到函数尾部。太奇怪了,我把那个值打印出来了(现在是 I.00425),但是服务器正常对待它,它只是打印出来的。我得到的 gettype 是双精度的。该函数是否也为您返回了错误的值?

以上是关于请帮我看看我的网页那里错了,总是报“405 Method not allowed”的主要内容,如果未能解决你的问题,请参考以下文章

请帮我!我不知道我做错了啥[关闭]

计算错误,请帮我看看?

请帮我看看这段javascript函数错在哪里

动态时钟代码运行没多久电脑就很卡,请帮我看看代码有啥问题,谢谢

我有化妆品VIRGO 上面有DE-TOXIFYINGCLEANSER Purifyingandhydrating Foraiiskintypes请帮我翻译一下

为啥邮件总是发送失败?请帮我测试一下