Solution :
Use IFRAME to load your custom page. That means your navigation link is link to your IFRAME html page.
<br /> <html style="height: 100%;"> <br /> <head> <br /> <title>Untitled Page</title> <br /> </head> <br /> <body style="width:100%; height:100%;" > <br /> <iframe id="frm" src="Search.aspx" frameborder="0" height="100%" width="100%"> <br /> </iframe> <br /> </body> <br /> </html> <br /> <br />
Create a html page using the code above. Then change the “src” to your custom page url.
The only probem with using the HTML to frame the .aspx page, is that the GET parameters that are normally passed to the iframe are lost. Has anyone found a solution / workaround to that?
ReplyDeletecan you describe more specifically what you trying to achieve with scenario? I guess you need your page load dynamically with parameter..
ReplyDeleteAny updates on passing Parameters to the child IFrame
ReplyDelete