用grid设计导航Select Case e.Path
Case "test.htm"
Dim wb As New WeUI
wb.AddPageTitle("","pageheader","WeUI","微信网页设计样式库")
With wb.AddGrid("","g1")
.Add("c1","Button", "./images/button.png").Attribute = ""
.Add("c2","Cell", "./images/cell.png", "http://www.foxtable.com")
End With
e.WriteString(wb.Build)
End Select
类似c2,是不是只能链接至一设计好的静态网页?
如果可以用WEUI框架动态生成,HttpRequest事件代码怎么写?
如果不可以,这个页面有列表输入框,用什么方法把来源于数据库表的列表值传递至静态的网页呢?
比如:
With wb.AddInputGroup("form1","ipg1","")
.AddInput("日期","日期","date")
.AddInput("经办人","经办人","Text")
.AddSelect("车号","车号","|"+DataTables("油卡登记").GetComboListString("车号"))