Asp.Net:从更新面板中的usercontrol重定向到另一个页面

时间:2013-01-20 08:08:37

标签: c# javascript asp.net

我有一个包含菜单的更新面板。
当用户在用户控件(在我的更新面板中)单击网格视图中的打印按钮时,我想重定向到另一页面 我使用这些代码,但它们对我不起作用:

1 : Response.Redirect("PrintTicket.aspx");
2 : Response.Write("<script>window.open('PrintTicket.aspx','_parent');</script>");
3 : Page.Response.Redirect("PrintTicket.aspx", true);
4 : Page.ClientScript.RegisterStartupScript(typeof(Page), "ClientScript", "<script     language='javascript' type='text/javascript'>window.location.replace('http://vinaticket.ir    /PrintTicket.aspx');</script> ", false);
5 : ScriptManager.RegisterStartupScript(this, this.GetType(),     "redirect","window.location='" + Request.ApplicationPath + "PrintTicket.aspx';", true);
6 : Page.ClientScript.RegisterStartupScript(typeof(Page), "ClientScript", "<script     language='javascript' type='text/javascript'> postRefId('" + Session["TicketID"].ToString() +     "');</script> ", false);
7 : ScriptManager.RegisterStartupScript(this, this.GetType(), "redir", "document.location = 'PrintTicket.aspx'", true);

这是我的代码:

<asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="true"     UpdateMode="Conditional">
<ContentTemplate>
----menu .... with exit button
    <asp:PlaceHolder ID="PlaceHolder1" runat="server" ViewStateMode="Enabled">

    </asp:PlaceHolder>

</ContentTemplate>
<Triggers>
    <asp:PostBackTrigger ControlID="exit" />
</Triggers>
</asp:UpdatePanel>
//code behind to loade user control
private string LastLoadedControl
{
    get
    {
        return ViewState["LastLoaded"] as string;
    }
    set
    {
        ViewState["LastLoaded"] = value;
    }
}

private void LoadUserControl()
{
    try
    {
        string controlPath = LastLoadedControl;

        if (!string.IsNullOrEmpty(controlPath))
        {
            PlaceHolder1.Controls.Clear();
            UserControl uc = (UserControl)LoadControl(controlPath);
            PlaceHolder1.Controls.Add(uc);
        }
    }  
    catch (Exception ex) { }
}

我的菜单按钮:

protected void your_ticket_Click(object sender, EventArgs e)
    {
        try
        {
            Session["pg"] = "Z_ViewTicket.ascx";
            setPath();
        }
        catch (Exception ex) { }
    }
    and set path method():

protected void setPath() { try { string controlPath = string.Empty; controlPath = BASE_PATH + Session["pg"].ToString(); LastLoadedControl = controlPath; LoadUserControl(); } catch (Exception ex) { } }
  

注意:我测试一个示例代码并找到原因,在我的示例代码中,我将用户控件拖到我的更新面板,按钮工作正常,但是   当我通过这些代码调用用户控件时按钮不起作用(in   case one用户控制寄存器到主页但是在两种情况下   不是主页中的任何注册码)

并且针对此问题如何重定向到其他网页?

1 个答案:

答案 0 :(得分:0)

我会对缺少例外情况做出一些大胆的假设&#34;但是让我们试一试:

  1. 您有JIT debugging disabled for script in Visual Studio
  2. 您有disabled debugging in Internet Explorer
  3. 参考问题真实主题,您可能会将数据源绑定到GridView事件中的Page_Load(请查看此answer)。

    在用户控件内(或将数据绑定到GridView的任何位置),在将GridView绑定到数据源之前,必须先检查!Page.IsPostback

    if (!IsPostBack)
    {
        gridView.DataSource = new[] { new { Id = 1, Value = "test" } };
        gridView.DataBind();
    }