首先问一下。vbscript里面中止执行下面代码用什么语句?类似于javascript的return。
window.event.returnValue=false不行 我试过了
帮忙解释下下面这段代码。越详细越好。
// 调用
<%=CxGame.GetInfo(0,"form","Nadd")%>
// 函数体
Public Function GetInfo(Typ,GetType,FormName)'[1|0][form|session|app]
GetInfo=CheckSqlstr(Trim(Request(FormName)))
If Typ=1 Then
IF Not Isnumeric(GetInfo) Then
GetInfo=1
Else
GetInfo=Clng(GetInfo)
End IF
End IF
End Function