如何使用Asp.net将一个应用程序重定向到另一个应用程序?

时间:2012-11-22 16:43:00

标签: c# asp.net redirect

我有两个Asp.net应用程序,第一个应用程序aspx页面有iframe,当页面加载重定向另一个应用程序aspx页面(基于端口位置在iss),iframe bellow页面有链接按钮,当我必须单击该按钮重定向第一个应用程序(主应用程序),但现在在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");         

            }

0 个答案:

没有答案