以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 请教,插入的标识数据为何提交不了? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=124168) |
-- 作者:bahamute -- 发布时间:2018/8/31 20:37:00 -- 请教,插入的标识数据为何提交不了? 弹出的 e.postvalues.count 始终是4个,没有蓝色字体部分。 wb.AddForm("","form1","GSProductEdit.htm") With wb.AddInputGroup("form1","ipg1","销售终端>报一笔") With .AddInput("zdmc","终端名称","text") .value = dr("终端名称") End With With .AddInput("cplb","产品类别","text") .value = dr("产品类别") End With With .AddInput("cpgg","产品规格","text") .value = dr("产品规格") End With With .AddInput("cpdj","产品单价","number") .value = dr("产品单价") .Min = "0.00" .Step = "0.01" End With wb.InsertHTML("<input name=\'flag\' id=\'flag\' value=\'" & e.GetValues("deloid") & "\' hidden>") End With |
-- 作者:有点蓝 -- 发布时间:2018/8/31 20:41:00 -- wb.InsertHTML("form1","<input name=\'flag\' id=\'flag\' value=\'" & e.GetValues("deloid") & "\' hidden>") |
-- 作者:有点蓝 -- 发布时间:2018/8/31 20:43:00 -- 或者使用帮助的用法http://www.foxtable.com/mobilehelp/scr/0127.htm |