[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

microsoft.public.dotnet.framework.aspnet.mobile

Displaying dates with options/choices on a mobilewebform

Chumley

1/29/2005


I need to find a way to list both the dates (either today or­ tomorrow

are the options)
and the leageus (nba , nfl ...) when users come to this menu­ page
(menuscores.aspx).
The object for each element (label1, listid, etc) are in the­ code
behind c# file (protected System.Web.UI.MobileControls.Label­ Label2;
protected System.Web.UI.MobileControls.List dateList; etc).


The mobilewebform stuff on the menuscores.aspx:


<mobile:form id="Form1" title="Scores" runat="server"
Font-Name="Verdana" Font-Size="Small">
<mobile:Panel id="Panel1" runat="server">
<mobile:Label id="Label1" runat="server" Alignment="Center"
StyleReference="title">Scores (Select Day)</mobile:Label>
<mobile:List id="dateList" runat="server" Decoration="Bullet­ed">
<Item Value="Today" Text="Today"></Item>
<Item Value="Yesterday" Text="Yesterday"></Item>
</mobile:List>
</mobile:Panel>
<mobile:Link id="Link1" runat="server" Alignment="Center"
NavigateUrl="mainmenuZ.aspx">Main Menu</mobile:Link>
</mobile:form>


<mobile:form id="Form2" title="Scores" runat="server"
Font-Name="Verdana" Font-Size="Small">
<mobile:Panel id="Panel2" runat="server">
<mobile:Label id="Label2" runat="server" Alignment="Center"
StyleReference="title">Scores (Select League)</mobile:Label>
<mobile:List id="leagueList" Font-Size="Small" Font-Name="Ve­rdana"
runat="server" Decoration="Bulleted"></mobile:List> </mobile­:Panel>
<mobile:Link id="Link4" runat="server" Alignment="Center"
NavigateUrl="#Form1">More Scores</mobile:Link>
<mobile:Link id="Link3" runat="server" Alignment="Center"
NavigateUrl="mainmenuZ.aspx">Main Menu</mobile:Link>
</mobile:form>


Thanks in advance
chumley