AboutSyed Rizwan Muhammad Rizvi Expertise I can answers questions regarding web based and desktop based programming in VB.Net. Which can include SOAP, XML, Custom Controls, COM Interoperability etc.
Experience Have been working in this specific area for last 2 years previously I was a VB 6 Developer with experties in other languages as well. Total 10 years of programming experience.
Question can we use master pages while developing dynamic applications or it can only be used in static applications?
because i am using master pages in dynamic applications. how to change the size of the content place holder dynamically so that any pages which are called from the tree control should be displayed within the contentplaceholder perfectly, i mean to say that i am using tree control by web.sitemap file, in master pages we have at the left side all the links to the site and as soon as we click the links the content of the link displayed in content place holder, i have increase the size of content place holder by <div>. in this way :-
<div style="height: 1000px; width:600px; overflow: scroll;">
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</div>
I have the footer as well in masterpage. i am using gridview in content pages whose content are filled dynamically. my problem is that content of the gridview displayed on the footer. how can i change the size of the content place holder so that according to the size of the content pages footer will move up and down and all the content pages will be displayed within the content place holder ? it should not beyond the footer.