-
ASP Form Layout
Could anybody tell me if there is a control "Container" that you can place other controls into and then set the width of the container to 100% so that when the browser is resized all the controls within it are also resized. So are therefore still in view to the user !!!
-
If there is any way to do it, it would have to be using client side javascript, but I dont think there is a way to do that as javascript cannot intercept the browser being resized.
-
Code:
<script language="javascript">
window.onResize = resizemystuff;
window.onLoad = resizemystuff;
function resizemystuff()
{
myobj.width = mynewvalue();
}
</script>