按照破折号的建议并进一步阅读,我实现了一种看似简单的方法:向 jQuery 添加一个隐藏按钮UpdatePanel
,然后从 jQuery 调用隐藏按钮的 onclick。
(我是否提到正在通过 jQuery UI 对话框收集更新的配置文件信息?)
这是相关的 ASPX 代码:
<!-- Change User Profile info -->
<div id="profileBasicInfoDiv">
<asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="True" UpdateMode="Conditional" Visible="True">
<ContentTemplate>
<asp:Label ID="lblProfileUserName" runat="server" Text="Name"></asp:Label>
<asp:Button ID="btnUserProfileUpdatePanel1" runat="server" Text="Button" Visible="True" onclick="btnUserProfileUpdatePanel1_Click" />
</ContentTemplate>
</asp:UpdatePanel>
<br />
<a href="#" id="hlShowBasicInfo">Change my details</a>
</div> <!-- End of profileBasicInfoDiv -->
..jQuery:
$("#profileChangeBasicInfo").dialog({
modal: true,
buttons: { 'Save': function () { $(this).dialog('close'); }
},
close: function () { UpdateProfile(); }
});
function UpdateProfile() {
var jsonText = "{'Bio':'" + $("[id$='MainContent_Bio']").val() + "','FirstName':'" + $("[id$='MainContent_FirstName']").val() + "'} ";
sendData(jsonText);
$("#MainContent_btnUserProfileUpdatePanel1").click();
};
这是隐藏按钮的相应 onclick 事件处理程序:
protected void btnUserProfileUpdatePanel1_Click(object sender, EventArgs e)
{
UpdatePanel1.Update();
((Label)(lblProfileUserName)).Text = Profile.FirstName + " " + Profile.LastName;
}
这可能不是最优雅的方法,但它很有效,而且我在此过程中学到了很多东西。非常感谢您的想法和评论。
谢谢你。