- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Perserverence is in my blood
- Interests
- The Internet and Music
- PC Specs
- Mac
15 Posted Topics
Hi Guys, The code below allows me to upload images. How would I go about inserting error checking if the user uploads a word document for example? Thanks W <!-- #INCLUDE FILE="Openconnection-for-local-use.asp" --> <!--#include file="Upload.asp" --> <% Dim Uploader, File Set Uploader = GetASPUploader Set File = Uploader.AddFile("file") File.ValidFileTypes = … | |
Hi Guys I have been working on an Automatic Email Function. The code returns two different email addresses which are used to send emails to. The problem is - in second email sent the Body of the text is repeated twice i.e. In the First Email Sent: Welcome to the … | |
Hi Guys My hosting company confirmed that recently it appeared that somebody was trying to hack into my website. I was able to confirm the page used but not whether they actually got through - no data in the database was changed. I have never come across this before and … | |
Hi Guys I am sending emails using cdo and SMTP Authentication in ASP. When I send emails to my clients who have Yahoo and Hotmail accounts the emails go into their spam/junk mail folders. Is there anything I can do about this? Thanks w:) | |
Hi Guys I've built a Job Site and I want to prevent a user from applying for the same job twice. Each record has a unique identifier which is its PK from the database. I was thinking of placing the ID in Cookie is this the best way? and also … | |
I have been able to retain the value in a listbox in asp when the user submits the form providing the user selects only one value from the list box - but how do I retain more than one value i.e. if the user selects more than one value? My … | |
Hi Guys I am trying to send a link in an email to my users - I am using CDO. I am having trouble contructing the link. Currently I am receiving the message "syntax error". [code] strBody = strBody & <a name= & "anchor" & id= & (rsEmailAlert.Fields.Item("S_Id").value) & href= … | |
Hi Guys I run a Job Advertsing Site and I would like to feature links to jobs on the home page. So I have created a schedule file with the following information: %%#1 Home Page<a href="http://www.myhomepage.com">link.</a> %%#1 First Page<a href="http://www.myfirstpage.com">link.</a> and upon refreshing it displays each link for the period … | |
Seasons Greetings Everybody! I want to use a Textfield to dispaly details of link information to my website so that others can copy and paste these details upon their website. I want to prevent visitors from being able to type anything in this field altogether. Does anyone know how? Thanks | |
Hi Guys I have 2 files 1st File a user creates a Text File using the FileSystemObject 2nd File I want to send an email confirming the Text File has been created I do not want to include the script to send an email with the script to create a … | |
I have always wondered? When you submit a form in ASP the page refreshes so in order to edit a value you have to press back on the browser or at least that is what I have been doing. Is there any way you can hold that value so that … | |
Re: Hi Try This: [code]<% Dim MyCDONTSMail Set MyCDONTSMail = CreateObject("CDONTS.NewMail") MyCDONTSMail.From= "abc" MyCDONTSMail.To= "myemailid@gmail.com" MyCDONTSMail.Subject="Enquiry sent from my web site" MyBody = MyBody ="Hello" MyCDONTSMail.Body= MyBody MyCDONTSMail.Send set MyCDONTSMail=nothing %>[/code] | |
Hi Guys I have a List Box ("LISTJOBTYPE") and so the User can select more than one Item: Junior Stylist Hair Stylist Senior Stylist Principle Stylist In my database I have the following: APP_NAME Jack APP_JOBTYPE Hair Stylist, Senior Stylist APP_NAME Jill APP_JOBTYPE Hair Stylist This is my SQL: SQL … | |
Hi Everyone On an .ASP Webpage I allow users to select more than one option from a list box. To retrieve this information I use the Split Function i.e. [code=ASP]<% strSQL = SELECT APP_JOB FROM TBLAPPLICANTS Set RSAPPLICANT = Server.CreateObject("ADODB.Recordset") RSAPPLICANT.open strSQL,Conn Dim strjob strjob = RSAPPLICANT("APP_JOB") choice=Split(strjob, ",") %>[/code] … | |
Re: For each field of data you want to embedd in the email you could do something like this: [code=ASP]<% If Request.Form("txtMessage") <> "" Then strMessage = Request.Form("txtMessage") End If Dim strBody strBody = strBody & strMessage & vbCrLf ObjSendMail.TextBody = strBody %>[/code] |
The End.