当我点击附加按钮时,它会使用postingFile名称向网格添加一个新行。 但它也导致整个页面刷新,就像updatePanel不存在一样。然而,我想只更新gridview。为什么这必须采用文件上传控件的方式。 UpdatePanel可以根据需要在页面上的其他控件/网格中使用。
我对jquery一无所知,所以必须只用c#来解决它。任何建议。
<asp:updatepanel runat="server" updatemode="conditional">
<triggers>
<asp:postbacktrigger controlid="btnAttach"/>
</triggers>
<contenttemplate>
<asp:gridview ...../>
<asp:fileupload id="fup" runat="server">
<asp:button id="btnAttach" text="attach" runat="server/>
</contenttemplate>
</asp:updatepanel>