[求助] err.desription的错误信息如何在JS中的Alert()里表现出来。
[求助] err.desription的错误信息如何在JS中的Alert()里表现出来。if err<>0 then
response.write "这里如何写JS的Alert(err.description)"
'表现出错的信息来
else
...
end if
[此贴子已经被作者于2007-3-21 10:16:44编辑过]
是呀 ,外层是 " 里面就只能有 '
给你一个函数,把错误信息格式化下
Function ToumhJs(Strings)
Dim Str
Str = Strings
str = Replace(str, CHR(39), "\'")
str = Replace(str, CHR(13), "")
str = Replace(str, CHR(10), "")
str = Replace(str, "]]>","]]>")
ToumhJs = str
End Function
response.write "<script language=""javascript"">alert("'"& ToumhJs(Err.Description) &"'");</script>"