Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by LaPluma

  1. LaPluma

    error '80040e21'

    Hello I am getting two error messages with the following script. They are: Microsoft JET Database Engine error '80040e21' Field 'Forum.Email' cannot be a zero-length string. /guest/gsave.asp, line 65 and: Microsoft JET Database Engine error '80040e21' Field 'Forum.Message' cannot...
  2. LaPluma

    Hello I have the following code

    Hello jemminger I have removed the: session(&quot;t1&quot;) = request.form(&quot;t1&quot;) on .asp1 and: <%= session(&quot;t1&quot;) %> on .asp2. The form fields are validated - if a field is omitted the code picks up on it - but the 'Thank you' page is not personalised and the emails are...
  3. LaPluma

    Hello I have the following code

    Hello jemminger No. .asp1 (which holds the form) and .asp2 (which thanks the visitor) validates the form fields and personalises the 'Thank you' page. This is what you helped me with earlier with your: session(&quot;t1&quot;) = request.form(&quot;t1&quot;) on .asp1 and: <%=...
  4. LaPluma

    Hello I have the following code

    Hello jemminger Thanks again for your message. The e.mail address I use is a valid one (my own real one)- as is the email ddress referred to in t2. The CDONTS page is actually on the page which I called whatever.asp. I have contacted the web hosting service which the site resides on and...
  5. LaPluma

    Hello I have the following code

    Hello jemminger Many thanks again for your reply. Yes, I have inserted the following into the form page: session(&quot;t1&quot;) = request.form(&quot;t1&quot;) and <p>Thank you <%= session(&quot;t1&quot;) %></p> in the whatever.asp page. It works fine, but I have some script...
  6. LaPluma

    Hello I have the following code

    Hello jemminger That has worked wonders! Thank you. I don't really understand the logic behind it, so I will study the code. Still, it works! Great! Best wishes LaPluma
  7. LaPluma

    Hello I have the following code

    Hello I have the following code on form.asp which checks that all fields in the form have been completed. The code works. <% If Request.Form.Count > 0 Then Name = Trim(Request.Form(&quot;t1&quot;)) Email = Trim(Request.Form(&quot;t2&quot;)) Message =...
  8. LaPluma

    Validation sample - server side?

    Hello I have a server side script which checks that form fields have been completed. If not, an error page is called pointing out that 'Name' (for example) must be completed, and invites the user to 'go back' to complete the fields correctly. However, I think we have all seen those error...
  9. LaPluma

    Sending an attachement with a form

    Hello You could try using CDONTS to send the email. Here's a useful link: http://www.aspfaqs.com/aspfaqs/ShowFAQ.asp?FAQID=13 Cheers LaPluma
  10. LaPluma

    CDONTS clarification

    Hello Tarwn and TonyU Many thanks for your reply. That's fine. Best wishes laPluma
  11. LaPluma

    CDONTS clarification

    Hello I am writing for a little clarification. Below is an example CDONTS script for sending e.mail. If I want to send a copy of the e.mail message (sent to the Webmaster by the visitor) to the visitor - in the way autoresponders might work - can I simply use: ObjCDOMail.CCTo =...
  12. LaPluma

    Difficult table arrangement

    Hello Tviman Thank you for your message. Yes, and that may make the whole operation simpler. Many thanks for your idea. Best wishes LaPluma
  13. LaPluma

    Difficult table arrangement

    Hello I have a Web page here: http://www.grafik1.net/conForm11.asp The Flash and graphics are contained in a table arrangement which doesn't make reading easy - unfortunately. This is the relevant code: </HEAD> <BODY bgcolor=&quot;#FF9900&quot; text=&quot;ffffff&quot;> <table border=0...
  14. LaPluma

    Breaking out of the pop up window

    Hello Dookie That works a treat! Very many thanks! LaPluma
  15. LaPluma

    Breaking out of the pop up window

    Hello Dookie Many thanks for your reply and my aplogies for the delay in getting back. I have this: <form name=&quot;welcome&quot; method=&quot;post&quot; action=&quot;welcome1.asp&quot; onSubmit=&quot;return ValidateEmail(document.welcome.email.value)&quot;> and I have taken your...

Part and Inventory Search

Back
Top