473,506 Members | 13,088 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

non-ASP speaker with gdform.asp problems

I have a website hosted on GoDaddy.com.

To process forms, GoDaddy requires users to use their gdform script.

(My copy of) The script is here:
http://www.joeswelding.biz/gdform.asp

I use this script to receive email messages, but the formatting of them is
horrible.

Is there any way to modify a Classic ASP script like this to send the
information in Rich Text or with HTML formatting?

I can modify the script, but I have no way of modifying GoDaddy's program
that uses this script.

Does anyone have any experience using GoDaddy? If I want to improve the look
of the emails I receive, must I come up with my own script to process my
mail form?
Aug 3 '07 #1
5 4177
You are NOT required to use GDFORM on GoDaddy. You just have to know
something about ASP programming and how to use CDONTS.

Here is the code I use to process a contact form and send me an email:

<%@ Language="VBSCRIPT" %>
<%

If Request.ServerVariables("REQUEST_METHOD") = "POST" Then

Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")

objMail.From = Request.Form("email")
objMail.Subject = "Contact Form"
objMail.To = "me@mymail.here"
objMail.Body = "Name: " & Request.Form("name") & vbcrlf & "Email: " &
Request.Form("email") & vbcrlf & vbcrlf & Request.Form("comments")
objMail.Send

set objMail = nothing

End If

%>
In article <eW**************@TK2MSFTNGP02.phx.gbl>, "jp2code"
<poojo.com/mailsays...
I have a website hosted on GoDaddy.com.

To process forms, GoDaddy requires users to use their gdform script.

(My copy of) The script is here:
http://www.joeswelding.biz/gdform.asp

I use this script to receive email messages, but the formatting of them is
horrible.

Is there any way to modify a Classic ASP script like this to send the
information in Rich Text or with HTML formatting?

I can modify the script, but I have no way of modifying GoDaddy's program
that uses this script.

Does anyone have any experience using GoDaddy? If I want to improve the look
of the emails I receive, must I come up with my own script to process my
mail form?
Aug 3 '07 #2
Dave,

That's a lot of good info!

Not being an ASP guy, and since Classic ASP info difficult to find without
being swamped by Microsoft's ASP.NET, could you point me in the direction of
a good site on how to use CDONTS in Classic ASP?

I've heard of both CDOS and CDONTS, and I looked them up once, but I had no
idea what they were trying to tell me that these were for. Is there a simple
(layman) description of what these do?

~Joe

"Dave" wrote:
You are NOT required to use GDFORM on GoDaddy. You just have to know
something about ASP programming and how to use CDONTS.

Here is the code I use to process a contact form and send me an email:

<%@ Language="VBSCRIPT" %>
<%

If Request.ServerVariables("REQUEST_METHOD") = "POST" Then

Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")

objMail.From = Request.Form("email")
objMail.Subject = "Contact Form"
objMail.To = "me@mymail.here"
objMail.Body = "Name: " & Request.Form("name") & vbcrlf & "Email: " &
Request.Form("email") & vbcrlf & vbcrlf & Request.Form("comments")
objMail.Send

set objMail = nothing

End If

%>


Aug 3 '07 #3
I get most of my information from sites like ASPIN.COM or
http://www.4guysfromrolla.com/

I scour the older articles which predate ASP.NET.

Other than that, I just have dozens of old books on classic ASP
programming that I refer to occasionally.

Never could bring myself to start down the .NET road...

--Dave
In article <Op**************@TK2MSFTNGP02.phx.gbl>, "jp2code"
<poojo.com/mailsays...
Dave,

That's a lot of good info!

Not being an ASP guy, and since Classic ASP info difficult to find without
being swamped by Microsoft's ASP.NET, could you point me in the direction of
a good site on how to use CDONTS in Classic ASP?

I've heard of both CDOS and CDONTS, and I looked them up once, but I had no
idea what they were trying to tell me that these were for. Is there a simple
(layman) description of what these do?

~Joe

"Dave" wrote:
You are NOT required to use GDFORM on GoDaddy. You just have to know
something about ASP programming and how to use CDONTS.

Here is the code I use to process a contact form and send me an email:

<%@ Language="VBSCRIPT" %>
<%

If Request.ServerVariables("REQUEST_METHOD") = "POST" Then

Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")

objMail.From = Request.Form("email")
objMail.Subject = "Contact Form"
objMail.To = "me@mymail.here"
objMail.Body = "Name: " & Request.Form("name") & vbcrlf & "Email: " &
Request.Form("email") & vbcrlf & vbcrlf & Request.Form("comments")
objMail.Send

set objMail = nothing

End If

%>


Aug 3 '07 #4
WOW! Now that is what I needed!

Thanks, Mr. Paal.

"Jon Paal [MSMD]" gave this link for an ASP Tutorial:
http://msconline.maconstate.edu/tuto...SP/default.htm

Aug 6 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3727
by: klaus triendl | last post by:
hi, recently i discovered a memory leak in our code; after some investigation i could reduce it to the following problem: return objects of functions are handled as temporary objects, hence...
3
12189
by: Mario | last post by:
Hello, I couldn't find a solution to the following problem (tried google and dejanews), maybe I'm using the wrong keywords? Is there a way to open a file (a linux fifo pipe actually) in...
25
7543
by: Yves Glodt | last post by:
Hello, if I do this: for row in sqlsth: ________pkcolumns.append(row.strip()) ________etc without a prior:
32
4468
by: Adrian Herscu | last post by:
Hi all, In which circumstances it is appropriate to declare methods as non-virtual? Thanx, Adrian.
8
3485
by: Bern McCarty | last post by:
Is it at all possible to leverage mixed-mode assemblies from AppDomains other than the default AppDomain? Is there any means at all of doing this? Mixed-mode is incredibly convenient, but if I...
14
8336
by: Patrick Kowalzick | last post by:
Dear all, I have an existing piece of code with a struct with some PODs. struct A { int x; int y; };
11
3395
by: ypjofficial | last post by:
Hello All, So far I have been reading that in case of a polymorphic class ( having at least one virtual function in it), the virtual function call get resolved at run time and during that the...
2
6089
by: Ian825 | last post by:
I need help writing a function for a program that is based upon the various operations of a matrix and I keep getting a "non-aggregate type" error. My guess is that I need to dereference my...
399
12635
by: =?UTF-8?B?Ik1hcnRpbiB2LiBMw7Z3aXMi?= | last post by:
PEP 1 specifies that PEP authors need to collect feedback from the community. As the author of PEP 3131, I'd like to encourage comments to the PEP included below, either here (comp.lang.python), or...
12
29791
by: puzzlecracker | last post by:
is it even possible or/and there is a better alternative to accept input in a nonblocking manner?
0
7105
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7308
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7371
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7023
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7479
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5617
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5037
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4702
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3188
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.