0

我有两个 Asp.net 应用程序,第一个应用程序 asp 页面有 Iframe,当页面加载时重定向另一个应用程序 asp 页面(基于 iss 中的端口位置),Iframe 波纹管页面有链接按钮,当我必须单击该按钮时重定向第一个应用程序(主应用程序)但现在在 iframe 中显示第一个应用程序页面,如何重定向主应用程序。

    Code
    ------------
   (82) Main Application:(first)(192.***.*.***:82/Rate.aspx)-->This Application have Two pages Rate.aspx, Default.aspx.
    -----------------
 Click -->  (82) Rate.aspx:(have one Iframe)

Page Load() method to load the another application Default.aspx page like    
     ifrm.Attributes["src"] ="http://192.***.*.***:83/default.aspx";

  Second Appliction --> (83) Default page : have one button , button click  event fired to redirect Main Application (82) default page have to display. code
    -----------------
    protected void lblWWPremiumRate_Click(object sender, EventArgs e)
            {
                Response.Redirect("http://192.***.*.***:82/default.aspx");         

            }
4

0 回答 0