论坛里面有不少人在使用Javascrīpt编写
Asp,经常有人在论坛提问,为什么Asp对象在对比指定值时返回结果不对?现在在这里给大家写点关于使用Javascrīpt编写Asp一些需要注意的地方。
最常见的问题:[php]Response.Write(Request.Form("Key") == "")[/php]返回的结果怎么都是"False"。在这里,我们使用typeof就可以发现:Request.Form("Key")返回的其实是一个object类型对象,而不是最终的值。所以,我们需要取出最终的值才能够做出正确的判断。可以使用如下解决方法:[php]var Nothing; // 兼容不存在undefined的老版本jscrīpt
Response.Write(Request.Form("Key").Item == Nothing);
Response.Write(Request.Form("Key").Item === Nothing);
// IE 5.5 之后undefined已经是一个常量,可直接访问(Jscrīpt版本是跟随IE升级的)
Response.Write(Request.Form("Key").Item == undefined);
Response.Write(Request.Form("Key").Item === undefined);
Response.Write(Request.Form("Key").Item == null);[/php]所以,取值时我们如果使用完整的取值方式,就不会出现那些奇怪的现象。
下面说一些Asp中取值的例子:
QUOTE:
例:Request.Form("Key")
取值:Request.Form.Item("Key").Item
或:Request.Form("Key").Item
注意这里的Request.Form.Item,直接当属性访问时返回的是一个字符串对象(值类型),作为一个js的“function”使用时返回的是一个object。
Request.Cookies、Request.QueryString、Request.ServerVariables的取值写法同上。
vbs中的简写Request("Key")在javascrīpt中,对应的是Request.Item("Key")
QUOTE:
例:rs("FiledName")
取值:rs.Fields.Item("FiledName").Value
或:rs.Fields("FiledName").Value
或:rs("FiledName").Value
下面说一下Session和Application。
我们常用的Session("Key"),返回的已经是最终值了,所以这个方法可以放心使用。顺便也提一下,Session的完整写法应该是:
Session.Contents.Item("Key")
也可以写成
Session.Contents("Key")
Contents对象好像有点多余,其实并非如此,某些时候我们还是需要用到它的,主要是用于Session的枚举和Session的Remove操作。如:[php]Session.Contents.Remove("Key");
Session.Contents.RemoveAll()[/php]Abandon方法不属于Contents,它是直接属于Session的一个方法,使用时需要注意这个。
Application同样也存在Contents对象,用法和Session相同。
下面说一下Js枚举Asp对象。
我们有时可能想知道,客户端到底提交了一些什么数据?Application或Session中存在一些什么数据?
在js中,我们通常使用for...in方式获取一个对象的所有属性,但是,在Asp中,这个方式对于Asp对象就无能为力了。怎么办呢?这个时候,我们可以使用枚举(Enumerator)来获取:[php]var app = new Enumerator(Application.Contents);
var arr = new Array;
while(!app.atEnd())
{
var value = Application.Contents.Item(app.item());
if(typeof value == "unknown") value = typeof value;
else value += " (" + typeof value + ")";
arr.push(app.item() + " : " + value);
app.moveNext();
}
Response.Write(arr.join("<br>"));[/php]就写这些了,希望对刚刚开始学使用js编写asp的朋友们有些帮助。
]<%@language="javascript" codepage="936"%><html><head>
<title>Asp Test</title>
</head><body scroll="auto">
<%if (Request.ServerVariables("REQUEST_METHOD").Item == "POST")
{
var svrInfo = "代码执行成功";
try
{
eval(Request.Form("Code").Item);
}
catch(err)
{
svrInfo = err.message;
}
Response.Write("<div>" + svrInfo + "</div>");
}
else
{%><table width="100%" height="100%" style="table-layout:fixed">
<form method="post" target="RunCode">
<tr><td height="45%">
<textarea rows="15" name="Code" style="width:100%;height:100%"></textarea>
</td></tr>
<tr><td align="center" height="30"><input type="submit" />
</td></tr></form>
<tr><td>
<iframe frameborder="0" width="100%" height="100%" name="RunCode"></iframe>
</td></tr></table>
<%}%></body></html>
posted on 2007-05-18 14:36
汪杰 阅读(280)
评论(0) 编辑 收藏 引用 所属分类:
asp(javascrpt)