Select Case e.Path
Case "销售合计明细.htm"
Dim ddr As DataRow= DataTables("Users").SQLFind("Name=\'"& e.Cookies("username") &"\' " )
.....
...... where 日期 = \'" & Date.Today & "\' And (\',\'+店名+\',\') like \'%," & ddr("账号企业名") & ",%\' " 列是多值的不起做用
....
With wb.AddPanelGroup("","pg1","销售合计列表")
For Each pr As DataRow In dt.DataRows
Dim txt As String = " "
With .Add("pn"& pr("编号"),pr("编号"),"提成金额:"& pr("提成实收金额"),"./images/购物车.gif","http://www.foxtable.com")
.AddFoot("提成金额:"& pr("提成实收金额"))
End With
Next
End With
End Select
[