我已经坚持了一段时间了。我一直在为不同的approches冲突stackoverflow问题,但我仍然无法让它工作。它运行代码,但弹出窗口不会显示。当我将方法放在updatepanel外面的按钮上时,它可以工作。
当我点击gridview中的按钮字段时,我想要显示一个弹出窗口。
这是我的代码:
<script type="text/javascript">
function ShowPopup(message, title) {
$(function () {
$("#dialog").html(message);
$("#dialog").dialog({
title: title,
buttons: {
Close: function () {
$(this).dialog('close');
}
},
modal: true
});
});
};
</script>
<div id="dialog" style="display: none">
</div>
Codebehind(我将不同的方法作为评论保留了我的问题):
protected void grdWallmessages_RowCommand(object sender, GridViewCommandEventArgs e)
{
string message = "Meddelande borttaget från väggen!";
string title = " Borttagning";
ScriptManager.RegisterStartupScript(updwallmessages, updwallmessages.GetType(), Guid.NewGuid().ToString(), "ShowPopup('" + message + "','" + title + "');", true);
// ScriptManager.RegisterStartupScript(this, this.GetType(), "myalert", "alert('File already exists.');", true);
// Page.ClientScript.RegisterStartupScript(this.GetType(), "Popup", "ShowPopup('" + message + "','" + title + "');", true);
try
{
DAL dal = new DAL();
//Hämtar row index.
int rowNum = int.Parse(e.CommandArgument.ToString());
int id = Convert.ToInt32(grdWallmessages.Rows[rowNum].Cells[3].Text);
dal.delete_wallmessages(id);
// ClientScript.RegisterStartupScript(this.GetType(), "Popup", "ShowPopup('" + message + "','" + title + "');", true);
Response.Redirect("Profile.aspx");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
gridview和updatepanel:
<asp:UpdatePanel ID="updwallmessages" runat="server">
<ContentTemplate>
<asp:GridView ID="grdWallmessages" runat="server" Height="159px" style="margin-top: 18px; margin-right: 0px;" Width="396px" OnSelectedIndexChanged="GridView1_SelectedIndexChanged" OnRowCommand="grdWallmessages_RowCommand" OnRowDataBound="grdWallmessages_RowDataBound">
<Columns>
<asp:ButtonField Text="Ta bort" />
</Columns>
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>
答案 0 :(得分:1)
您无法在ajax上下文中创建Response.Redirect("Profile.aspx");
,这是在将网格视图代码保留在UpdatePanel中时执行的。
在Firebug或Chrome / Firefox网络控制台的帮助下检查服务器响应数据。