目前在企业微信中开发程序,用.Addselect选择后无法保存到云服务器中的数据表中,版主,如何处理。 With wb.AddInputGroup("form1","ipg3","反馈信息处理意见")
'.AddInput("问题类型","问题类型","text").Value = dr("问题类型")
With .AddSelect("product","问题类型", "|" & cmd1.ExecuteReader.GetComboListString("问题类型"))
.Attribute = """
End With
With .AddSelect("startdate","具体表现","")
.Attribute = """
End With
'With .AddSelect("enddate","处理意见","")
'.Attribute = """
'End With
.AddInput("处理意见","处理意见","text").Value = dr("处理意见")
.AddInput("责任部门","责任部门","text").Value = dr("责任部门")
.AddInput("处理时间","处理时间","date").Value = Date.Today()
.AddInput("处理人","处理人","text").Value = e.Cookies("username")
.AddSelect("状态","状态","已反馈|已处理|已整改")
.AddInput("备注","备注","text").Value = dr("备注")
End With