InterviewSolution
| 1. |
What Is .net Mobile Forms? |
|
Answer» .NET Mobile Forms are SPECIALIZED Web forms which can work on various mobile devices. Each Mobile Page must have at least one mobile form. A single mobile form can encapsulate multiple mobile controls in it. Compared to ASP.NET, a single mobile page can CONSIST of multiple mobile forms. <mob:Form id=”form1” runat="server"> <mob:Label id=”lbl1” runat="server">HELLO WORLD</mob:Label> </mob:Form> <mob:Form id=”form2” runat="server"> <mob:Label id=”lbl2” runat="server">Hello WORLD2</mob:Label> </mob:Form> .NET Mobile Forms are specialized Web forms which can work on various mobile devices. Each Mobile Page must have at least one mobile form. A single mobile form can encapsulate multiple mobile controls in it. Compared to ASP.NET, a single mobile page can consist of multiple mobile forms. <mob:Form id=”form1” runat="server"> <mob:Label id=”lbl1” runat="server">Hello World</mob:Label> </mob:Form> <mob:Form id=”form2” runat="server"> <mob:Label id=”lbl2” runat="server">Hello World2</mob:Label> </mob:Form> |
|