2

所以我正在使用 Bootstrap 并创建了一个自定义 VB.net 控件来创建模式并显示它。我的正文和模态页脚是由Panel控件制成的。在模态主体内部的前端,我添加了一个CheckBoxList控件并绑定到它。因此,当我单击一个按钮时,CheckBoxList它会丢失它的项目。我需要能够查看选择了哪些项目。

在后端。

<Bindable(True), Category("Appearance"), DefaultValue(""), Description("Modal Body."), _  
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),   PersistenceMode(PersistenceMode.InnerProperty)> _  
Public Overridable Property ModalBody As Panel  
    Get  
        Return _ModalBody  
    End Get  
    Set(value As Panel)  
        _ModalBody = New Panel  
        _ModalBody = value  
        _ModalBody.CssClass = "modal-body"  
    End Set  
End Property  

在前端。

<ModalBody runat="server">  
  <asp:CheckBoxList ID="chkBoxTest" runat="server"></asp:CheckBoxList>
</ModalBody>`

我不知道如何让它保持视图状态。我做了研究,只是没有找到解决方案。

4

0 回答 0