Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cannot insert date

Status
Not open for further replies.

ceccina

IS-IT--Management
Nov 18, 2002
22
IT
Hi,
I have an application written in ASP.
I cannot insert the date 31 march 2002.
Days stop at 30 march 2002.
Other years are ok.
 
Could you post the code that checks the insertion or shows the date input box?
 
What DB are you using? Oracle or SQL ect.

Ordinary Programmer
 

My database is Oracle 8.1.7

I am not a programmer, but I think this is the part of code which requires data.
There are several other files imported and perhaps
<!--#include virtual="/_Dev/Objects/Miscellaneous/DateSelector.asp"-->

is interesting for you, but it is too long.

<div id="RichiestaLimitiPanel">

<form name="Sender" action="" target="HIDDEN_FRAME" method="POST" ID="Sender">

<table ID="Table2" class="CardBack">
<tbody>

<tr>
<td>
</td>

<td class="CardHeader">
<div>Data competenza da / a</div>
</td>

<td>
<%
var dt = new SvrDateSelector(false, "DT_DAL_RAT", "CardData", "CardData", "CardData");
//to modify start mese
dt.Render(DT_DAL_RAT, true);
%>
</td>

<td style="text-align:center; FONT-SIZE: 20px; color: #107FAD;">
<label > - </label>
</td>
<td colspan=2>
<%
var dt = new SvrDateSelector(false, "DT_AL_RAT", "CardData", "CardData", "CardData");
dt.Render(DT_AL_RAT, true);
%>
</td>
</tr>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top