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?
jp2code [ Fr, 03 August 2007 16:56 ] [ ID #1786218 ]

Re: non-ASP speaker with gdform.asp problems

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:

<% [at] 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 [at] 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 <eWBgJ6d1HHA.3916 [at] TK2MSFTNGP02.phx.gbl>, "jp2code"
<poojo.com/mail> says...
> 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?
dave [ Fr, 03 August 2007 22:19 ] [ ID #1786224 ]

Re: non-ASP speaker with gdform.asp problems

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:
>
> <% [at] 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 [at] 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
>
> %>
>
>
jp2code [ Fr, 03 August 2007 23:30 ] [ ID #1786229 ]

Re: non-ASP speaker with gdform.asp problems

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 <Opb#DWh1HHA.6128 [at] TK2MSFTNGP02.phx.gbl>, "jp2code"
<poojo.com/mail> says...
> 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:
> >
> > <% [at] 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 [at] 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
> >
> > %>
> >
> >
>
>
>
dave [ Sa, 04 August 2007 00:00 ] [ ID #1786231 ]

Re: non-ASP speaker with gdform.asp problems

http://msconline.maconstate.edu/tutorials/ASP/default.htm
Jon Paal [ Sa, 04 August 2007 18:53 ] [ ID #1786923 ]

Re: non-ASP speaker with gdform.asp problems

WOW! Now that is what I needed!

Thanks, Mr. Paal.

"Jon Paal [MSMD]" gave this link for an ASP Tutorial:
> http://msconline.maconstate.edu/tutorials/ASP/default.htm
>
jp2code [ Mo, 06 August 2007 15:10 ] [ ID #1788030 ]
Webserver » microsoft.public.inetserver.asp.general » non-ASP speaker with gdform.asp problems

Vorheriges Thema: Empty cookie!
Nächstes Thema: hi