私は2つのAsp.netアプリケーションを持っています。最初の1つのアプリケーションaspxページにはIframeがあり、ページの読み込みがリダイレクトされると別のアプリケーションのaspxページ(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");
}