Я бы использовал jquery и сделал бы следующее:
Сначала включите jquery в раздел head вашей страницы (здесь я помещаю удаленно размещенную версию, которую вы можете копировать и вставлять как есть.).
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
Затем добавьте id к div, размер которого вы хотите изменить, и id к тд, высота которого будет вашей «ссылкой» (я назвал это «mydiv» и «mytd»):
<td id="mytd" style="background-color: #FFD700; text-align: top;">
<asp:Panel ID="Panel2" runat="server" GroupingText="Nodes" Height="100%">
<div id="mydiv" align="left" style="width: 170px; text-align: top; overflow: auto; height: 100%;
min-height: 100%;">
<asp:TreeView runat="server" ID="treesiteMap" OnSelectedNodeChanged="SiteMapTree_SelectedNodeChanged"
Style="text-align: left; margin-left: 0; margin-right: auto; padding-left: 0;
padding-right: auto; position: static" meta:resourcekey="treesiteMapResource1">
<HoverNodeStyle BackColor="LightBlue" />
<SelectedNodeStyle BackColor="LightGray" />
</asp:TreeView>
</div>
</asp:Panel>
</td>
Наконец,
добавьте следующий код в конце вашего тела:
//A generic function that resizes an element's height according to another's
function resizeMydiv(targetElement,ReferenceElement) {
targetElement.css("height",ReferenceElement.height());
//Code means : the css height of TargetElement should be the height of ReferenceElement.
}
$(document).ready(function() {
//I call my function, passing #mydiv and #mytd as the variables
resizeMydiv($("#mydiv"),$("#mytd"));
});
//Optional : this calls the function again on window resize, to keep it proortional to the window size if needed.
$(window).resize(function() {
resizeMydiv($("#mydiv"),$("#mytd"));
});