Click to See Complete Forum and Search --> : Control to specify time Range
guhananth
09-05-2007, 05:41 AM
Hi,
I need a web control ASP.NET to specify time rang say example:
8 am- 2pm
2 pm - 8 pm
or
8 am To 2 pm
2 pm To 10 pm
Regards
Guhan
lmf232s
09-05-2007, 10:25 AM
Are you looking at building a user control or what?
Will the times very or will they always be as you have them listed?
Do you need the ability to create new ranges?
guhananth
09-06-2007, 12:41 AM
Are you looking at building a user control or what?
Will the times very or will they always be as you have them listed?
Do you need the ability to create new ranges?
i need a user control or something.i must be able to create ranges with validations.If i give textbox they can type anything,we cannot validate correctly know.
lmf232s
09-06-2007, 11:25 AM
Could you just do something like this
<asp:DropDownList Id="ddlSelection" runat="server" >
<asp:ListItem value="1" Text="8am To 2pm"/>
<asp:ListItem value="2" Text="2pm To 8pm"/>
</asp:DropDownList>