Hi all i have access database connected to myp aspx webpage. I used dreamweaver. When i store the time through an aspx form. It saves it in access database table field. I set the field to show short time field.
How ever when i retrieve the record through my aspx form it shows the date and time?
PARAMETER
textbox
i just want it to show short time i.e 22:54?
many thanks
How ever when i retrieve the record through my aspx form it shows the date and time?
PARAMETER
Code:
<Parameter Name="@TimeAdded" Value='<%# IIf((Request.Form("TimeAdded") <> Nothing), Request.Form("TimeAdded"), "") %>' Type="Date" />
textbox
Code:
<asp:textbox ID="TimeAdded" Text='<%# DataSet1.FieldValue("TimeAdded", Container) %>' TextMode="SingleLine" Columns="20" runat="server" />
i just want it to show short time i.e 22:54?
many thanks