以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  函数错误  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=165070)

--  作者:有点蓝
--  发布时间:2021/5/10 22:47:00
--  
RequestEventArgs 是web服务httprequest事件独有的e参数,应该是在控件里调用了这个函数,然后传入了控件事件的e参数。

Dim e As RequestEventArgs = args(0)
改为
Dim e  = args(0)

或者直接去掉,因为代码也没用到