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">
<aspanel 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>
</aspanel>
</form>
</body>
</html>
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">
<aspanel 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>
</aspanel>
</form>
</body>
</html>