Foxtable(狐表)用户栏目专家坐堂 → 麻烦老师帮我看看 web为什么会议列表信息没有显示出来呢?


  共有2787人关注过本帖树形打印复制链接

主题:麻烦老师帮我看看 web为什么会议列表信息没有显示出来呢?

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:107304 积分:545781 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/1/23 17:40:00 [显示全部帖子]

Dim e As RequestEventArgs = args(0)
Dim wb As New weui
Dim PageNumber As Integer = e.GetValues("page")
msgbox(PageNumber )
Dim PrimaryKey As Integer = e.GetValues("key")
msgbox(PrimaryKey  )
Dim PageURL = "gethuiyiList.htm?page=" & PageNumber & "&key=" & PrimaryKey
Dim cmd11 As New SQ LCommand
cmd11.Connection Name = "sql"
cmd11.Comm andText = "sele ct * from {会议列表} "
MessageBox.Show(cmd11.CommandText)

Dim dr1 As DataTable = cmd11.ExecuteReader
Dim dr As DataRow = dr1.SQLFind("[_Identify]=" & PrimaryKey)
msgbox(e.PostValues.Count)
If e.PostValues.Count = 0 Then '生成编辑页面
msgbox(dr IsNot Nothing)
    If dr IsNot Nothing Then
        wb.AddPageTitle("","ph1","会议列表")

 回到顶部
帅哥哟,离线,有人找我吗?
有点蓝
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:107304 积分:545781 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/1/25 8:42:00 [显示全部帖子]

http://www.foxtable.com/mobilehelp/topics/278.htm

异步函数代码结构为:

Dim e As RequestEventArgs = args(0)
'生成网页
'...
'发送网页

e
.Handled = True '通知系统异步函数执行完毕,可以关闭信道


 回到顶部
帅哥哟,离线,有人找我吗?
有点蓝
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:107304 积分:545781 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/1/25 8:56:00 [显示全部帖子]

2、httprequest没有gethuiyi.htm这个网页的入口

3、没有dynaActiveSheet这个函数http://www.foxtable.com/mobilehelp/topics/0147.htm

 回到顶部