This is located in PostAd.aspx...
<
legend>For how long should this scrim be listed?</legend>
<asp:DropDownList ID="NumDaysList" runat="server">
<asp:ListItem Value="0.0208">1/2 Hour</asp:ListItem>
<asp:ListItem Value="0.0416">1 Hour</asp:ListItem>
<asp:ListItem Value="0.125" Selected="True">3 Hours</asp:ListItem>
<asp:ListItem Value="0.5">12 Hours</asp:ListItem>
</asp:DropDownList>
As i said before, i changed each value myself. The ExpirationDate datatype is smalldatetime, in the classifieds_Ads Table.
Located in PostAd.aspx.vb...
Dim numDays As Double = Convert.ToDecimal((NumDaysList.SelectedValue))
It was previously
Dim numDays As Integer = Convert.ToInt32((NumDaysList.SelectedValue))
however i changed that to remove the error i had using decimals for expiration time.
Hope that helps.