[lnkForumImage]
TotalShareware - Download Free Software

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


 

The Bear

8/26/2004 7:49:00 PM

There has got to be a way to put to controls on one line for Mobile Web
Forms. If you know can you help.

T.B.


1 Answer

JuanDG

8/27/2004 8:13:00 PM

0

It may not be "the best way", but as far as I know it''s "the only way".

cHTML, xHTML, WML, HTML (which are the Markups supported by MMIT) all have
the same syntaxes for defining tables, although some WML devices don''t
render tables, but they are very few (and very old too!!!)

so the solution I came up with, was constructing a simple table around the
controls like this:
<table>
<tbody>
<tr>
<td><Mobile:Command
runat="server">Command</Mobile:Command>
</td>
<td><Mobile:Command
runat="server">Command</Mobile:Command>
</td>
</tr>
</tbody>
</table>

hope it work for you, if not, let me know the specific case so we can figure
out something!!

--

Juan David Gomez A.
Microsoft Certified Professional
Analista de Desarrollo - PSL S.A.
Web and Wireless Banking
Medellin - Colombia

"The Bear" <buck_roggers@hotmail.com> wrote in message
news:V8rXc.47481$UTP.17620@twister01.bloor.is.net.cable.rogers.com...
> There has got to be a way to put to controls on one line for Mobile Web
> Forms. If you know can you help.
>
> T.B.
>
>