Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Panel control

Status
Not open for further replies.

TheCivic

Programmer
Feb 7, 2006
34
GB
Does anyone know why the panel server control doesnt display using Pocket Internet Explorer?? According to microsoft Pocket Internet Explorer SDK, the panel control, which renders as a Div element should work.

Anyone got any ideas??

My page code is as follows :

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="test.aspx.vb" Inherits="test" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns=" >

<head runat="server">

<title>Untitled Page</title>

</head>

<body>

<form id="form1" runat="server">

<asp:panel ID="testPnl" runat="server" ScrollBars="Vertical" Width="100%" Height="50px">

<asp:TreeView ID="TreeView1" runat="server" EnableTheming="False" EnableViewState="False"

ExpandDepth="FullyExpand" ImageSet="Arrows" NodeWrap="True">

<Nodes>

<asp:TreeNode Expanded="True" Text="Sections" Value="Sections">

<asp:TreeNode Text="ABCDEFG" Value="ABCDEFG">

<asp:TreeNode Text="123" Value="123"></asp:TreeNode>

</asp:TreeNode>

<asp:TreeNode Text="HIJKLMNO" Value="HIJKLMNO">

<asp:TreeNode Text="456" Value="456"></asp:TreeNode>

</asp:TreeNode>

<asp:TreeNode Text="PQRSTUVWXYZ" Value="PQRSTUVWXYZ">

<asp:TreeNode Text="789" Value="789"></asp:TreeNode>

</asp:TreeNode>

</asp:TreeNode>

</Nodes>

<ParentNodeStyle Font-Bold="False" />

<HoverNodeStyle Font-Underline="True" ForeColor="#5555DD" />

<SelectedNodeStyle Font-Underline="True" ForeColor="#5555DD" HorizontalPadding="0px"

VerticalPadding="0px" />

<NodeStyle Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" HorizontalPadding="5px"

NodeSpacing="0px" VerticalPadding="0px" />

</asp:TreeView>


</asp:panel>

</form>

</body>

</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top