Buenos dias, tengo un problemilla con unos asp:textbox y no entiendo por que.
Me explico tengo unos asp:textbox que quiero que se rellenen con una funcion javascript de la siguiente manera.
function modificar(n,F,C,K,L,AH,M,v)
{
// La capa donde estan todos.
formulario.style.visibility="visible";
num.value=n;
FechaIn.value=F;
CONCEPTO.value=C;
KMSin.value=K;
LOCOMOCIONin.value=L;
ALQUILERin.value=AH;
MANUTENCIONin.value=M;
VARIOSin.value=v;
}
siendo los textbox definidos asi.
<tr>
<td style="WIDTH: 140px; HEIGHT: 135px" colSpan="2">Fecha
<asp:textbox id="FechaIn" runat="server" Width="136px"></asp:textbox></td>
<td style="HEIGHT: 135px" colSpan="2"> CONCEPTO
<asp:textbox id="CONCEPTO" runat="server" Width="192px"></asp:textbox></td>
<td style="WIDTH: 119px; HEIGHT: 100px">KMS
<asp:textbox id="KMSin" runat="server" Width="104px"></asp:textbox>€</td>
<td style="WIDTH: 134px; HEIGHT: 135px">LOCOMOCION
<asp:textbox id="LOCOMOCIONin" runat="server" Width="105px"></asp:textbox>€</td>
<td style="WIDTH: 164px; HEIGHT: 135px">ALQUILER/HOTEL
<asp:textbox id="ALQUILERin" runat="server" Width="137px"></asp:textbox>€</td>
<td style="WIDTH: 100px; HEIGHT: 135px" colSpan="2">MANUTENCION
<asp:textbox id="MANUTENCIONin" runat="server" Width="78px"></asp:textbox>€</td>
<td style="HEIGHT: 140px">VARIOS
<asp:textbox id="VARIOSin" runat="server" Width="52px"></asp:textbox>€</td>
</tr>
Pues bien cuando lo pruebo con firefox me lo hace bien pero cuando uso el explorer me dice con no he definido num.
¿Que hago mal?
Agradeceria cualquier ayuda....