Log in

View Full Version : plz help me



cute
04-26-2007, 05:23 AM
hi how to display file contents inside the <Div> tag.help me plz.

codeexploiter
04-26-2007, 05:29 AM
1. Place an IFrame inside a DIV block

2. Refer the required file through IFrame

Something like the following



<div>
<iframe src="yourpage.htm" height="500" width="760" frameborder="0" id="ifr" name="ifr" scrolling="auto"></iframe>
</div>


The height and width of the Iframe can be directly mapped to the height and width of the div block in which you place the iframe

Twey
04-26-2007, 10:20 AM
Or, better, use a server-side script. Requires your server to have one installed and enabled, though.