Foxtable(狐表)用户栏目专家坐堂 → 在服务端使用专业报表能做到微信服务器吗?


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

主题:在服务端使用专业报表能做到微信服务器吗?

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


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

Dim fl As String = "D:\web\" & e.path
If filesys.FileExists(fl)
    Dim idx As Integer = fl.LastIndexOf(".")
    Dim ext As String  = fl.SubString(idx)
    Select Case ext
        Case ".jpg",".gif",".png",".bmp",".wmf",".js",".css" ,".html",".htm",".zip",".rar"
            e.WriteFile(fl)
            Return '这里必须返回
    End Select
End If
if e.Path = "wefox" then
微信服务的处理
else
try
If e.Path.StartsWith("Reports\")
    e.ResponseEncoding = "gb2312"
        Select Case e.Path
            Case "" '授权页面
                Functions.Execute("order1",e)
            Case "main.htm" '授权主页跳转
                Functions.Execute("main",e)
            Case "bjcn.htm"
                Functions.Execute("bjcn",e)
            Case Else
                e.AsReportServer("Reports\")
                e.WriteString("糟糕你访问的网址不存在,系统出现错误")
        End Select
end if
catch ex As Exception
    Functions.Execute("LogText",ex)
    e.WriteString("")
End Try
endif

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


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

一样的

 回到顶部