blueindian1
Programmer
hello all,
i have this code (simplified)
as users upload images, the height that page.aspx requires increases. once it passes the 400px defined for the iframe height, a scroll bar appears.
i don't want the scrollbar. but i can't just set the height to a very high number either, because i need the button which is under the iframe to always be right below the last row of images.
basically, i need to set the height to 100% but when i do that nothing appears.
any advice???
tIa!
i have this code (simplified)
Code:
iframe.html:
<table>
<tr>
<td>
<iframe src="page.aspx" height=400 width=400>
</td>
</tr>
<tr width=100%>
<td width=100% align=center>
<input type=submit>
</td>
</tr>
</table>
page.aspx:
this is a asp.net page that displays rows of images with information about them. each row has a thumbnail.
as users upload images, the height that page.aspx requires increases. once it passes the 400px defined for the iframe height, a scroll bar appears.
i don't want the scrollbar. but i can't just set the height to a very high number either, because i need the button which is under the iframe to always be right below the last row of images.
basically, i need to set the height to 100% but when i do that nothing appears.
any advice???
tIa!