I have a small snippet of code that I want to load a portion of another website embedded in one of my aspx pages:
<tr>
<td style="padding-left:15px;">
<iframe src="http://www.google.com/" width="210" height="100" /></iframe>
</td>
</tr>
When I view the page in IE the frame has the following warning text:
To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.
However, under no circumstances does google.com, or any other external page load for that matter. An iframe is a pretty simple tag...is something obvious missing, or is ASP.NET imposing some contraint?
Thanks in advance.