Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Chris Kennedy #1
Submit form
I am creating a control which will upload files. The problem I am having is
the button event I have created does not seem to see the files getting
posted to it. My first guess is that my event is not posting the form. I can
add a submit button. How do I create an event that will respond to the
submit button and enable me to use the httpFileCollection. Also when using
the FileCollection is there any way to refer to the file by the id the input
control. Regards, Chris.
Chris Kennedy Guest
-
Form does not submit in Mac
Hi all, I am using the submitForm() on my submit button. I have set the URL to "/Save.aspx" which will get the submitted information and doing... -
Need Help With Submit Form
I have DW 3 and designing my own site. I would like my customer to be able to fill out a form. I know how to create a form, I don't know how to get... -
Form submit
Mira, If you move from one page to another then the objects which were on the first page wouldn't be accessible from the second. Is this what... -
Form Field/ Form Submit Problems (probably an easy answer...)
Hey Everyone.. I have a form that has approximately 7 text fields and 1 checkbox. Generally when this form is submitted(to itself BTW) it works... -
ASP Form Doesn't Always Submit
Hello everyone, I am pretty much newbie to ASP so please bear with me as I explain my problem. I currently have a main form which displays data... -
Natty Gur #2
Re: Submit form
Hi,
you should set form ENCTYPE="multipart/form-data" attribute to uplaod
files.
Natty Gur[MVP]
blog : [url]http://weblogs.asp.net/ngur[/url]
Mobile: +972-(0)58-888377
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
timrande #3
submit form
anyone know how to submit a form using an htm file in the action of the form
method ?
for example, <form method="post" action="test.htm">
I get a 405 page not found - resource not allowed error with this.
timrande Guest
-
mix-tape developer #4
Re: submit form
You can try something like that :
<form method="post" action="test.htm" name="myForm>
<input type="Hidden" name="myName" value="Said"> //this can be hidden or
any other type it doesn't matter
</form>
<script language="JavaScript1.2">
document.myForm.submit();
</script>
and in your template test.htm you can manipulate the variable myName as any
other one and you don't have to define it.
Best,
S@id+
mix-tape developer Guest



Reply With Quote

