UpdatePanel更改我的表格样式

时间:2015-07-11 07:25:07

标签: c# asp.net styles updatepanel

我在表单中使用嵌套的usercontrol 当页面加载我没有任何问题 但当我检查我的复选框中的复选框时,我的整个风格都毁了 有什么问题?

ConnectionDetector cd = new ConnectionDetector(getApplicationContext());

Boolean isInternetPresent = cd.isConnectingToInternet(); // true or false

i use the marked check box to select all usercontrol in that row then it changes my style

当我没有使用更新面板时它工作但我想用Ajax

1 个答案:

答案 0 :(得分:0)

我以这种方式更改我的代码

<asp:UpdatePanel ID="UP_MdfRow" runat="server" UpdateMode="Conditional" RenderMode="Inline">
<ContentTemplate>
    <div id="TableDIV" runat="server"></div>
</ContentTemplate>

当我将usercontrol的表添加到div元素时,它可以正常工作。

谢谢大家