Reducing form size
-
Hello I have a couple of aspx forms in my VB.NET project. Eventually, these forms will be used on a Classic ASP site which has already been created. The user will click on a link on a Classic ASP page and one of these ASP.NET forms will appear in a smaller window as there is no need for a log-in form to occupy the entire screen. Therefore, I need to reduce the size of the form that I have - at the moment each form fills the whole screen - and I wonder what is the best way of reducing the size of the form? Thanks!
-
Hello I have a couple of aspx forms in my VB.NET project. Eventually, these forms will be used on a Classic ASP site which has already been created. The user will click on a link on a Classic ASP page and one of these ASP.NET forms will appear in a smaller window as there is no need for a log-in form to occupy the entire screen. Therefore, I need to reduce the size of the form that I have - at the moment each form fills the whole screen - and I wonder what is the best way of reducing the size of the form? Thanks!
-
You would have to size everything using % in CSS width: 100% or width: 80% Its no different than making the same page expand and contract resizing the browser window
Thanks for that jkirkerx, I didn't realise it has to involve CSS. Sorry for the late reply.