Height

Hello.

When I set the height property with a 100% value, instead of expanding to the whole page the component expands beyond the webpage size.

Hi,

Thanks for considering Aspose.

Well, gridweb's height and width works fine. I think you should place the gridweb control to the upper-left corner on the web form before setting the height/width to 100% value.

Thank you.

Hi.

I workk whith Master Page. So I have a menu inside my master page. In my webpage that contains the gridweb, I have a html table whith 2 rows and jus a column. Inside the fisrt row, I have a Label with a title, and inside the second row I have my gridweb.

In this cenary I have problemn with height.

The same problemn apears when I set the freezepanel!! Take a look in this post:

<A href="</A></P> <P>Can You help me??</P>

Hi,

Thanks for considering Aspose.

Well, if you want to set gridweb's height 100%, then the control should be placed on the upper-left most place otherwise the gridweb's height may extend from bottom. If not possible, you may try to set gridweb's height explicitly e.g.,

GridWeb1.Height = new Unit("500pt");

Thank you.