displaying an external website inside a frame

liptonIcedTea

Well-known member
Joined
Jan 18, 2007
Messages
89
Programming Experience
1-3
Hi, I'm running ASP.NET 1.1 at the moment and I want to be able to display a report of mine. This report is created in Reporting Service 2005, so I cannot simply use the Report Viewer. What I propose is to develop another website, written in .NET 2.0 which can utilise the Report Viewer.

I will then display this website within a frame or a DIV in my current website.

However, I'm not too sure how to actually get an external site to display inside a frame or a div? Can anyone help? Is there a class or something for this?
 
Hi Lipton,
Add an IFrame and point the src to the page which is running the reports.
Or from the code-behind you can point it like this
IFrameName.Attributes.Add("src","http://www.somedomain.com/reportpage.aspx")

Hope this helps.

Regards,
Vikrant.
 
Back
Top