ASP Form/ File Emailer?
I want to set up a form that the user can select a number of checkboxes next to a list of PDF docs and then enter their email and hit submit - the form then emails those PDF files to the email address. Code:
View RepliesI want to set up a form that the user can select a number of checkboxes next to a list of PDF docs and then enter their email and hit submit - the form then emails those PDF files to the email address. Code:
View RepliesI'm looking for an ASP-based email system that can be used in our alrady existing web application. I've done some research and I found one, but it was a while ago and I didn't keep good documentation so I don't even know what the KEYWORDS were that I used to find it. Does anyone have any suggestions.
So far I've found one called EasyMail Objects from Quiksoft. It's offers several .dll files that will do the IMAP, SMTP, POP3, etc, but I still have to create the pages.. I want the pages already created for me.
I need to setup an error page that automatically sends me an email when the error page is hit. But i need to do this in javascript.
View Replies View RelatedI have a form as follows:
<form action="dropboxsubmit.asp" method="post" enctype="multipart/form-data">
<input type="file" name="FILE1" size="30">
<input type="text" name="def" value="0" size="10">
etc.....
and can't get my asp to recognize data in other form input boxes using Request.Form
Any thoughts?
I have a simple webform and after the has submitted the form, I want the values to be 1) emailed to me and 2) be put into a CSV file somewhere on the server. I have this system working in PHP but found out it needs to be ASP.
I can't really find anything which would suit my requirements. The main thing here is that each time the form is submitted I want the new entries to be added to the one CSV file, as opposed to creating a new file every time.
I currently have an ASP form on a web site I maintain. This form allows visitors to submit an ad with a picture attached. I am seeking a way that checks the file size prior to uploading to the server. Currently if a file larger than 1mb is uploaded there is a timing problem and a html error page comes up instead of our created error page. I would like the error page to appear before the file even starts to upload.
View Replies View RelatedWhen you have a FILE input in your form (ie. <input type="file">), is there any way of forcing the filetype to a certain type (eg. .DOC, .XLS) when you hit the browse button?
View Replies View RelatedOriginally Posted by <%=RS("Tony")%> did you try it? and did it work . Works like a charm for me! Any ideas for uploading images and resizing them?
View Replies View RelatedI am in desperate need of an ASP File Upload Form that will allow my users to upload files from their computers to a folder called "uploaded" on my server. I have been everywhere and have tried just about everything to get something working with no success so far. I need to use the form within my user system and need to incorporate the folling code at the top of the page:
<%
If Session("MM_Username") = "" Then
Response.Redirect("login.asp")
End If
%> ....
I had an HTML form with regular fields: <FORM method="post" action="action.asp"> . Now I need to add an upload field: <INPUT type="File" name="File1"> . I changed the form to <FORM method="post" encType="multipart/form-data" action="ToFileSystem.asp"> after which I cannot access the HTML fields on the action page.
I found out on the web about AspUpload object which is a workaround to get both fields and files uploads within one form but for me installing the object on the server is not an option. Is there any other workaround/solution to this problem?
I need to be able to write results from a form picklist to a file. I know I
can append the output at the end of the file but is there a way to add the
output to a certain place in the file. i.e Code:
I've created a form for users to fill in, and I want to be able to write the details of each form to a text file. Each file is named username.txt (eg. JohnSmith.txt or MikeStiletti.txt)
However, when the code below is processed i get a "Path not found" error. Now these files are on a web server and i am trying to write to my C drive. It would be great if I could create these files on the same web server too by just removing the "C:Surveys" on the bolded line. Code:
I'm trying to get my users to attach a local file to the mail they sending me from my page.
My form code is: ....
I currently am trying to get a form to send its data to a text file. I use the code I have found in tutorial/help sites around the web, but when I try the code out, nothing happens.
When I click the "Submit" button on my form, I am sent to the .asp file and the code in that file is displayed in the browser. There is nothing written to the text file either.
The code I have in my test.asp file is:
I need users to upload and delete pictures on the server from a form. I've done this in PHP before, but in ASP it looks like a different world. I need to do it simply with ASP, and cannot be installing components from the web.
Is the following in the right direction?
Code: ....
I am having problems trying to make a form submit information back to itself. The form works fine when I am not using the enctype"multipart/form-data" tag that is used to upload files with the <input type="file"> form component. However I need to upload a file using this form and also pass information back to the ASP page aswell.
<%
txt = request.FORM("COMMENT")
response.write("txt="&txt)
%>
<form name="frm1" id="frm1" action="mytest2.asp" method="POST" enctype="multipart/form-data">
<strong>Select file #1:</strong><br>
<input type="file" size="40" name="FILE1" id="FILE1"><p>
<strong>Comments:</strong><br>
<input type="text" size="40" name="COMMENT" id="COMMENT"><p>
<input type="submit" value="Upload!">
</form>
I am trying to create a upload file form in asp.here is what I have so far
Code:
<form enctype="multipart/form-data" name="Form1" action="<%=basepath%>Admin/reportrequest.asp" method="Post" onSubmit="return submitwindow(Form1)">
and then I have the following
<TD>
Upload the templated :
</TD>
do I need to do two separte forms,because when I include enctype="multipart/form-data" in my form then my submit part stops working meaning it will not add data in my sql table when I hit submit.
I did an contact form page using asp, when we press the submit button the information r going to a mail id. i want to add an file upload to that page . i can use that , when i used it , the file is going to that mail id but i cannot download that file. can u tell me how can i do that?
View Replies View Relatedhow hard is it to create a xml file then upload it to an ftp with a webform that query's data based with entry? i need a user to be able to enter certain parameters then it queries info based off that parameter and creates a xml file, then uploads it to a ftp.
View Replies View RelatedIs it possible to have a form where people fill out their basic information and then have an option to where they can browse their files and send a file when they send the form? You know, add an attatchment like they have in email forms?
Then when the form is sent to the email address whoever received it can download the attatchment? If this can be done, can someone point me in the right direction on where to go to figure out how to do this? I dont know much about asp.
Have been struggling over the last 2 days trying to submit an XML form through to 3rd party application. Have tried XMLHTTP, and ServerXMLHTTP, and these are all good for normal form input types but i need to submit a input type of file called 'XML', to a resource which I cant control how it processed it.
Anyone have any ideas of how to do this, I can save and open an XML document from a the dbase created string, but when I send the serverXMLHTTP variable XML = contents of the file it doesnt get processes as a noraml XML document.
Have a look at the function I have, which submits but doesnt see the submitted variable as an XML document. Code:
I'm trying to get a file attached to an email from a form.
The form is a simple name, email, attach cv. When the user hits submit it gets sent to the company. I simply used the <input type="file"> for the user to browse.
i want create a form that include many text boxes and an fiel field for upload a file to server but when i add "enctype="multipart/form-data" in the form tag i cant get the texts . how can i do a form working with file upload and text fields.
View Replies View Relatedi want to send an email from a web app with an attached file. the form is for users to enter email addresses to whom they want the attached file sent. I'm using ASP and CDONTS mail. Code:
View Replies View Relatedhow to create a comma delimited text file from an asp form. Assume my fields are: Name, email, phone number.
View Replies View RelatedMy company needs an online form that user's can enter information into and once submitted, will dump the user-supplied info into a csv file and email it to the person who heads up the project. Initially, I thought they wanted the form to save the data to a database, and after playing all weekend, I was able to do that. Today I learned that they prefer the emailing a csv file method instead. Any links to tutorials on this subject or sample code with explanation would be greatly appreciated!
View Replies View Relatedhow to convert asp file output in excel dynamically.
View Replies View RelatedI need to load the file path of a file on a web server into a form text box. I tried using a normal form box using type=file but that just seems to return the file path from the local machine.
Ideally I'd like it if someone can get this to work with a file on a web server without using asp. If not then I suppose I'd have to use the FileSystemObject method. I can see how you can get a list of files from a remote server using FileSystemObject.
The problem I need help with is selecting a file path from the list of files into a text form box. The path of which I am then going to write to a database field.
I'm trying to setup an ASP page to POST an image across to another page- essentially simulating what a browser does when you use <input type=file> in a HTML form.
I'm able to correctly setup the headers etc and do the POST, but I'm unable to include the binary data of the image.
The only way i've been able to do it is if I base64 encode the image. I'm using MSXML2.ServerXMLHTTP to do the POST, and I can't seem to do the .send with a form body that includes the binary data of the image. Code:
I want to write the info on a form to a text file. Code:
View Replies View RelatedI've got multiple pages on the same server that all have the same drop down
boxes in them. It is a list of all our facilities. Every time there is a
change, I have to change it on every page. They are in the format below. Is
there an easy way to store all that data in a text file so I only have to
update it one place?
<option value="fac 1">fac 1</option>
<option value="fac 2">fac 2</option>
<option value="fac 3">fac 3</option>
I have a text file that has two lines in it, the first line gives item
labels, my second line gives values for those labels. I would like to use
ASP to present this data on a web page. I also want the page to reload every
10 seconds so that any updates to the text file would be relfected on the web
page.
<INPUT TYPE="FILE" SIZE="50" NAME="FILE2">
I have this form field that I'm processing on another ASP page on submission. How do i determine if this field has had any data input? I tried
<% Request.Form("FILE2") %>
but it does not have any value. What am i doing wrong?