以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  关于网页设计AddInputGroup分组  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=159006)

--  作者:hnguang
--  发布时间:2020/12/10 11:37:00
--  关于网页设计AddInputGroup分组
   With wb.AddInputGroup("form1","ipg2","業務備注")
                .AddTextArea("業務備注",2) .Value=dr("業務")
              
            End With
              With wb.AddInputGroup("form1","ipg2","制造")
                   .AddTextArea("制造備注",2) .Value=dr("制造")
            End With

请问这样子添加两个分组不可以吗,


--  作者:有点蓝
--  发布时间:2020/12/10 11:42:00
--  
id不能重复

 With wb.AddInputGroup("form1","ipg2","業務備注")

                .AddTextArea("業務備注",2) .Value=dr("業務")
              
            End With
              With wb.AddInputGroup("form1","ipg3","制造")
                   .AddTextArea("制造備注",2) .Value=dr("制造")
            End With