Click to See Complete Forum and Search --> : ASP.NET Mobile Web App - Active schema does not support the element 'Table'


THY02K
November 13th, 2004, 09:22 AM
Hi, developing an ASP.NET app that runs on BlackBerry Browser using Mobile Internet Toolkit. I'm having two problems with user interface:

1. I tried to drag drop components (textbox, labels... etc) onto the canvas. No problem. But I can't:
a. adjust component width
b. get two components to sit on same line

2. I added HTML table on the the design canvas, and the following error occurred --- Active schema does not support the element 'Table'


<mobile:Form id="Form1" runat="server">
<mobile:TextBox id="txtUser" runat="server"></mobile:TextBox>
<mobile:TextBox id="txtPasswd" runat="server"></mobile:TextBox>
<mobile:SelectionList id="lstGroup" runat="server"></mobile:SelectionList>
<mobile:Label id="lblStatus" runat="server"></mobile:Label>
<TABLE id="Table1" cellSpacing="1" cellPadding="1" width="300" border="1">
<TR>
<TD>UIN</TD>
<TD>login</TD>
<TD>email</TD>
</TR>
<TR>
<TD>1</TD>
<TD>sam</TD>
<TD>sam@hotmail.com</TD>
</TR>
<TR>
<TD>2</TD>
<TD>peter</TD>
<TD>peter@hotmail.com</TD>
</TR>
</TABLE>
<mobile:Command id="btnSubmit" runat="server">Submit</mobile:Command>
</mobile:Form>

Any idea? I need HTML Tables. Any get around?


Thanks in advance.