Foxtable(狐表)用户栏目专家坐堂 → '错误信息提示:未将对象引用设置到对象的实例.


  共有2341人关注过本帖平板打印复制链接

主题:'错误信息提示:未将对象引用设置到对象的实例.

帅哥哟,离线,有人找我吗?
sysckj
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:131 积分:1640 威望:0 精华:0 注册:2014/6/9 14:21:00
'错误信息提示:未将对象引用设置到对象的实例.  发帖心情 Post By:2023/9/7 6:53:00 [只看该作者]

 With wb.AddPanelGroup("page2","pg2","报名选班")
            wb.AddForm("page2","form1","bmxb.htm")
            
            With wb.AddInputGroup("form1","ipg3","选择兴趣班")
                .Addselect("iname","兴趣班",DataTables("interest_classes").GetComboListString("name"))
                
                
            End With
            
            With wb.AddButtonGroup("form1","btg2",False)
                .Add("btn2", "确定报名", "submit")
                .add("btn3","取消报名","button").Attribute = ""
            End With
            
            
            
        End With
        
     Case "bmxb.htm" 

        Dim dr As DataRow =DataTables("users").find("name = '" &  e.cookies(username) &  "'")
        Dim dr1 As DataRow =DataTables("interest_classes").find("name = '" &  e.PostValues("iname") &  "'")
         dr("interestid")=dr1("id")
         dr.Save()
        e.WriteString("ok")
         e.WriteString(wb.Build)

       '错误信息提示:未将对象引用设置到对象的实例.


 回到顶部