English 中文(简体)
如何使点击<asp:Panel>(或简单的<div>)成为UpdatePanel的触发事件
原标题:How to make clicking on an <asp:Panel> (or a simple <div>) a trigger event for an UpdatePanel
  • 时间:2011-02-16 15:56:22
  •  标签:
  • c#
  • webforms

我在中继器中有一个UpdatePanel。

UpdatePanel中有几个AutoPostBack=“true”的复选框

UpdatePanel中有一个标签。我在RepeaterName_ItemDataBound中设置标签的Text值,因为它在生成的每个项目上运行。

<asp:Repeater ID="Repeater1" runat="server" DataSourceID="XmlDataSource" OnItemDataBound="R1_ItemDataBound">
    <ItemTemplate>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <div>
                    <asp:Label ID="DateTimeLabel2" runat="server" Text="Label"></asp:Label>
                    <asp:Panel ID="panID" CssClass="actionicon_normal actionicon_compare" runat="server">
                        <%#XPath("ID")%>
                        <asp:CheckBox ID="chkID" runat="server" AutoPostBack="true" />
                    </asp:Panel>

                </div>
            </ContentTemplate>
        </asp:UpdatePanel>
    </ItemTemplate>
</asp:Repeater>

I want the CheckBoxes to automatically update the UpdatePanel as there were no repeater around, but possibly because the OnItemDataBound does not fire on every AsyncPostBack, nothing gets updated. What is the proper way to do this?

最佳回答

In the onclick (JavaScript) call this function __doPostBack( idOfUpdatePanel , ); Javascript and UpdatePanel

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签