P
pbd22
Hi.
Why is this happening??
I have a reg form with a lot of data.
I am trying to post the form using
document.getElementById('id').submit();
I am explicitly naming method="post" in my form tag.
the action element is pointing to the same form:
action="sameform.aspx".
I am using about 20 hidden input fields.
<input type=hidden id=hidden1 value=title />
The inputs get their values via javascript on client validation:
<a href='#' onclick="return validclient();" id="publish"
class="textBtnRed"><span>Publish</span></a>
I am getting "Access is Denied" no matter what I seem to do.
Could somebody please either give me an idea how to get around this
and/or
please give me an example of how to post a large amount of data using
javascript (I cannot use
Microsoft's runat=server per the client's request.
Thanks!
Why is this happening??
I have a reg form with a lot of data.
I am trying to post the form using
document.getElementById('id').submit();
I am explicitly naming method="post" in my form tag.
the action element is pointing to the same form:
action="sameform.aspx".
I am using about 20 hidden input fields.
<input type=hidden id=hidden1 value=title />
The inputs get their values via javascript on client validation:
<a href='#' onclick="return validclient();" id="publish"
class="textBtnRed"><span>Publish</span></a>
I am getting "Access is Denied" no matter what I seem to do.
Could somebody please either give me an idea how to get around this
and/or
please give me an example of how to post a large amount of data using
javascript (I cannot use
Microsoft's runat=server per the client's request.
Thanks!