以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  高级开发帮助  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=140242)

--  作者:hopestarxia
--  发布时间:2019/9/2 2:30:00
--  高级开发帮助
老师,高级开发指南,使用关联表,
其中有 HttpRequest事件代码

我计划所有任务都用自定义函数来完成,所以HttpRequest事件代码很简单:

Select Case e.Path
    Case "list.htm"
        Functions.Execute("List",e) \'
分页显示
    Case "edit.htm"
        If e.PostValues.Count > 0 Then
           
Functions.Execute("Save",e) \'保存表单数据
        End If
        Functions.Execute("Edit",e) \'生成订单编辑页面

End
Select

还有使用List函数,Edit函数,
请问这两个
函数说明的代码具体是放在会么地方?



--  作者:有点蓝
--  发布时间:2019/9/2 9:02:00
--  
自定义函数,看看:http://www.foxtable.com/mobilehelp/topics/0025.htm
--  作者:hopestarxia
--  发布时间:2019/9/2 11:13:00
--  
谢谢老师!