<% If Request("Send") = Empty Then %>
<% Else %>
<%
Dim Name, Cache, Rate, Month, Total
Name = Request.form("UserName")
Rate = Request.form("UserRate")
Cache = Request.form("UserCache")
Month = Request.form("UserMonth")
Total = Cache + Cache * Rate * Month / 12
%>
<%= Name %>,您好!
当本金为<%= Cache %>?
年利率为<%= Rate %>?
月数为<%= Month %>??
本利之和将为<%= Total %>?
<% End If %>
在我没填入内容直接浏览的时候,提示
错误类型:
Microsoft VBScript 运行时错误 (0x800A000D)
类型不匹配: '[string: ""]'
/ch5/计算利率2.asp, 第 31 行
也就是这一行的问题:Total = Cache + Cache * Rate * Month / 12
请高手指点一下,是哪里错了?导致这样的错误!谢谢了!