[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Rich

3/8/2002 2:58:00 AM

How can I display standard HTML table (HTML 3.2) in my mobile web
application by means of MMIT?

Rich


1 Answer

Re: Table

3/8/2002 11:09:00 AM

0

Hi Rich

Tables on mobile webforms are a pain. I think the idea is we hand the
responsibility of laying the form out to .net so it can target different
devices. Try something like:

<mobile:Panel id="pnlMyPanel" runat="server">
<mobile:DeviceSpecific id="devExam1" runat="server">
<Choice Filter="IsHTML"
Xmlns="http://schemas.microsoft.com/mobile/html32template...
<ContentTemplate>
<table cellSpacing="0" cellPadding="0" border="0">
..... table goes here as normal ....
</table>
</ContentTemplate>
</Choice>
</mobile:DeviceSpecific>
</mobile:Panel>

Hope this helps

Joe