本文介绍了asp.net中的移动应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发移动应用程序,因为我正在使用各种控件,
我想在控件之间留出空间,
I am developing mobile application,In that I am using various controls,
I want to give space between the controls,
<mobile:Label id="l2" runat="server">Emp No</mobile:Label>
   
<mobile:TextBox id="t1" runat="server"></mobile:TextBox>
但它没有给空间.移动应用程序中还有其他标签吗?
而且我也使用列表控件,
but it is not give space.There is any other tag in mobile application?
And I am also use list control as,
<mobile:List ID="lst" Runat ="server" >
<Item Text ="CL" Value ="CL" />
<Item Text="SL" Value="SL" />
</mobile:List>
它也不起作用.
请帮帮我.
在此先感谢您.
it is also not working.
Please Help me.
Thanks in advance.
推荐答案
I have solved this problem.
for spcae, I miss semicolon in
and for list, in mobile controls it just show only items. And if we want to select from list, we need to use Selection list
这篇关于asp.net中的移动应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!