access denied when submitting form

  • Thread starter Thread starter fjleon
  • Start date Start date
F

fjleon

I have an .asp page dated february 10th 2006, that shows some data and
then you can submit the form to another page.

This is the code:

{...}
<tr>
<td>
<input type="button" id="Aceptar" name="Aceptar"
value="Aceptar" onclick="return Aceptar_onclick()">
</td>
</tr>
{...}

This is the javascript function:

<SCRIPT type="text/javascript">
<!--

function Aceptar_onclick()
{
document.getElementById("FORM_DAT_VEH").submit();
}

//-->
</SCRIPT>

This worked until i got a call today from a client telling me that it
wouldn't work for him. I tried it on IE myself and it doesn't work
either.

It works on firefox and opera.

How can an unmodified file have been working so long? Maybe an
automated update updated
our jscript version?

What is going on?
 
Back
Top