不能使用case的
if e.parh like "Reports\*" then '所有execl报表的网页
Functions.Execute("ddsc", e)
else '其它网页的处理
Select Case e.Path
Case "123.htm"
……
end if
js
function ddsc(){
location="Reports/ddsc.pdf?oid=" + table1.primarykey;
}
还有其它的内部函数的话,应该怎么写呢?
if e.parh like "Reports\*" then '所有execl报表的网页 Functions.Execute("ddsc", e)
其它内部函数
else '其它网页的处理
if e.parh like "Reports\*" then '所有execl报表的网页
Functions.Execute("ddsc", e)
else '其它网页的处理
Select Case e.Path
Case "1.htm"
其它内部函数1
……
end if
我的意思是有多个EXCEL报表,不只是ddsc这个
Functions.Execute("ddsc", e) |
if e.parh like "Reports\*" then '所有execl报表的网页
e.Resp
Select Case e.Path
Case "Reports\ddsc.htm"
Functions.Execute("ddsc", e)
Case "Reports\2.xls"
Functions.Execute("其它函数", e)
case .......
Functions.Execute("其它函数....", e)
Case Else
e.AsReportServer("Reports\")
End Select
else '其它网页的处理