Home All Groups Group Topic Archive Search About

How to password protect Form web pages

Author
3 Jun 2009 8:25 PM
rleesteelenospam

I have a web site that is password protected and available to members of our
high school class only.  I password protected the site using MS FrontPage
2003 Article ID 825498.

I have several forms on the site that I use to collect information for our
classmates.  These forms were made using the FrontPage 2003's Form Page
Wizard and Feedback Form wizard.  These pages work with an extension of
..html or .htm but not with a .asp extension, therefore I can not password
word protect them by using a .asp extension and the vbscript include used on
the other pages.

I have searched the net and can not find samples of how I can create the
forms and password protect them.  I am converting the site to use MS
Expression Web 2 instead of FP 2003.

Does anyone have any ideas on where I can find some sample code on how to
create the forms and password protect them without having to change the way
I have the password protection currently set up?  This is the code I place
on each page that is password protected and has a .asp extension.  <%
@language="vbscript" %>
<!--#include virtual="/classsite/_private/logon.inc"-->.

Any help would be greatly appreciated.

Lee Steele

Author
4 Jun 2009 8:16 AM
Stefan B Rusynko
The FP Form handle only works with HTML pages

Check which server side forms handler your host supports
- CDOSYS (preferred) or CDONTS
For an example using CDONTS see
http://www.devasp.com/Samples/Mail.asp
For an example using CDOSYS see
http://www.w3schools.com/asp/asp_send_email.asp

--

_____________________________________________
SBR @ ENJOY (-:              [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!"  (-;
_____________________________________________


Show quoteHide quote
<rleesteelenospam@comcast.net> wrote in message news:%23ZKUalI5JHA.3860@TK2MSFTNGP05.phx.gbl...
|I have a web site that is password protected and available to members of our
| high school class only.  I password protected the site using MS FrontPage
| 2003 Article ID 825498.
|
| I have several forms on the site that I use to collect information for our
| classmates.  These forms were made using the FrontPage 2003's Form Page
| Wizard and Feedback Form wizard.  These pages work with an extension of
| .html or .htm but not with a .asp extension, therefore I can not password
| word protect them by using a .asp extension and the vbscript include used on
| the other pages.
|
| I have searched the net and can not find samples of how I can create the
| forms and password protect them.  I am converting the site to use MS
| Expression Web 2 instead of FP 2003.
|
| Does anyone have any ideas on where I can find some sample code on how to
| create the forms and password protect them without having to change the way
| I have the password protection currently set up?  This is the code I place
| on each page that is password protected and has a .asp extension.  <%
| @language="vbscript" %>
| <!--#include virtual="/classsite/_private/logon.inc"-->.
|
| Any help would be greatly appreciated.
|
| Lee Steele
|
Are all your drivers up to date? click for free checkup

Author
4 Jun 2009 3:31 PM
rleesteelenospam
Thanks Stefan.
My hosting service (godaddy.com) uses CDOSYS.  Do you know where I could
find a sample ASP form where the response is sent via email using CDOSYS?
I've found several sites that use one or the other, but have found none that
show a sample of both.

Thanks again.
Lee Steele

Show quoteHide quote
"Stefan B Rusynko" <sbr_en***@hotmail.com> wrote in message
news:e6hdFzO5JHA.1420@TK2MSFTNGP04.phx.gbl...
> The FP Form handle only works with HTML pages
>
> Check which server side forms handler your host supports
> - CDOSYS (preferred) or CDONTS
> For an example using CDONTS see
> http://www.devasp.com/Samples/Mail.asp
> For an example using CDOSYS see
> http://www.w3schools.com/asp/asp_send_email.asp
>
> --
>
> _____________________________________________
> SBR @ ENJOY (-:              [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!"  (-;
> _____________________________________________
>
>
> <rleesteelenospam@comcast.net> wrote in message
> news:%23ZKUalI5JHA.3860@TK2MSFTNGP05.phx.gbl...
> |I have a web site that is password protected and available to members of
> our
> | high school class only.  I password protected the site using MS
> FrontPage
> | 2003 Article ID 825498.
> |
> | I have several forms on the site that I use to collect information for
> our
> | classmates.  These forms were made using the FrontPage 2003's Form Page
> | Wizard and Feedback Form wizard.  These pages work with an extension of
> | .html or .htm but not with a .asp extension, therefore I can not
> password
> | word protect them by using a .asp extension and the vbscript include
> used on
> | the other pages.
> |
> | I have searched the net and can not find samples of how I can create the
> | forms and password protect them.  I am converting the site to use MS
> | Expression Web 2 instead of FP 2003.
> |
> | Does anyone have any ideas on where I can find some sample code on how
> to
> | create the forms and password protect them without having to change the
> way
> | I have the password protection currently set up?  This is the code I
> place
> | on each page that is password protected and has a .asp extension.  <%
> | @language="vbscript" %>
> | <!--#include virtual="/classsite/_private/logon.inc"-->.
> |
> | Any help would be greatly appreciated.
> |
> | Lee Steele
> |
>
>
Author
4 Jun 2009 4:15 PM
Veign
Either:
http://www.veign.com/code-view.php?type=web&codeid=21

or:
http://www.veign.com/code-view.php?type=web&codeid=38

--
Chris Hanscom - Microsoft MVP
Resource Center: http://www.veign.com/development-center.php
Veign's Blog: http://www.veign.com/blog
--
Web Development Help: http://www.veign.com/development-center-web.php
--


<rleesteelenospam@comcast.net> wrote in message
Show quoteHide quote
news:umZ38lS5JHA.4184@TK2MSFTNGP02.phx.gbl...
> Thanks Stefan.
> My hosting service (godaddy.com) uses CDOSYS.  Do you know where I could
> find a sample ASP form where the response is sent via email using CDOSYS?
> I've found several sites that use one or the other, but have found none
> that show a sample of both.
>
> Thanks again.
> Lee Steele
>
> "Stefan B Rusynko" <sbr_en***@hotmail.com> wrote in message
> news:e6hdFzO5JHA.1420@TK2MSFTNGP04.phx.gbl...
>> The FP Form handle only works with HTML pages
>>
>> Check which server side forms handler your host supports
>> - CDOSYS (preferred) or CDONTS
>> For an example using CDONTS see
>> http://www.devasp.com/Samples/Mail.asp
>> For an example using CDOSYS see
>> http://www.w3schools.com/asp/asp_send_email.asp
>>
>> --
>>
>> _____________________________________________
>> SBR @ ENJOY (-:              [ Microsoft MVP - FrontPage ]
>> "Warning - Using the F1 Key will not break anything!"  (-;
>> _____________________________________________
>>
>>
>> <rleesteelenospam@comcast.net> wrote in message
>> news:%23ZKUalI5JHA.3860@TK2MSFTNGP05.phx.gbl...
>> |I have a web site that is password protected and available to members of
>> our
>> | high school class only.  I password protected the site using MS
>> FrontPage
>> | 2003 Article ID 825498.
>> |
>> | I have several forms on the site that I use to collect information for
>> our
>> | classmates.  These forms were made using the FrontPage 2003's Form Page
>> | Wizard and Feedback Form wizard.  These pages work with an extension of
>> | .html or .htm but not with a .asp extension, therefore I can not
>> password
>> | word protect them by using a .asp extension and the vbscript include
>> used on
>> | the other pages.
>> |
>> | I have searched the net and can not find samples of how I can create
>> the
>> | forms and password protect them.  I am converting the site to use MS
>> | Expression Web 2 instead of FP 2003.
>> |
>> | Does anyone have any ideas on where I can find some sample code on how
>> to
>> | create the forms and password protect them without having to change the
>> way
>> | I have the password protection currently set up?  This is the code I
>> place
>> | on each page that is password protected and has a .asp extension.  <%
>> | @language="vbscript" %>
>> | <!--#include virtual="/classsite/_private/logon.inc"-->.
>> |
>> | Any help would be greatly appreciated.
>> |
>> | Lee Steele
>> |
>>
>>
Author
4 Jun 2009 5:46 PM
rleesteelenospam
Chris,
Thanks for your reply.

What I'm looking for is a sample form with the email capability already
built in.  I am a relative newbie when it comes to using FP or EW.  I know
enough to be able to modify existing forms, but to build one from scratch
and add the email capability is beyond my skill level.

Thanks again.

Lee Steele

Show quoteHide quote
"Veign" <NO_SPAMsupport@veign.comREMOVE> wrote in message
news:#Ew91#S5JHA.4896@TK2MSFTNGP04.phx.gbl...
> Either:
> http://www.veign.com/code-view.php?type=web&codeid=21
>
> or:
> http://www.veign.com/code-view.php?type=web&codeid=38
>
> --
> Chris Hanscom - Microsoft MVP
> Resource Center: http://www.veign.com/development-center.php
> Veign's Blog: http://www.veign.com/blog
> --
> Web Development Help: http://www.veign.com/development-center-web.php
> --
>
>
> <rleesteelenospam@comcast.net> wrote in message
> news:umZ38lS5JHA.4184@TK2MSFTNGP02.phx.gbl...
>> Thanks Stefan.
>> My hosting service (godaddy.com) uses CDOSYS.  Do you know where I could
>> find a sample ASP form where the response is sent via email using CDOSYS?
>> I've found several sites that use one or the other, but have found none
>> that show a sample of both.
>>
>> Thanks again.
>> Lee Steele
>>
>> "Stefan B Rusynko" <sbr_en***@hotmail.com> wrote in message
>> news:e6hdFzO5JHA.1420@TK2MSFTNGP04.phx.gbl...
>>> The FP Form handle only works with HTML pages
>>>
>>> Check which server side forms handler your host supports
>>> - CDOSYS (preferred) or CDONTS
>>> For an example using CDONTS see
>>> http://www.devasp.com/Samples/Mail.asp
>>> For an example using CDOSYS see
>>> http://www.w3schools.com/asp/asp_send_email.asp
>>>
>>> --
>>>
>>> _____________________________________________
>>> SBR @ ENJOY (-:              [ Microsoft MVP - FrontPage ]
>>> "Warning - Using the F1 Key will not break anything!"  (-;
>>> _____________________________________________
>>>
>>>
>>> <rleesteelenospam@comcast.net> wrote in message
>>> news:%23ZKUalI5JHA.3860@TK2MSFTNGP05.phx.gbl...
>>> |I have a web site that is password protected and available to members
>>> of our
>>> | high school class only.  I password protected the site using MS
>>> FrontPage
>>> | 2003 Article ID 825498.
>>> |
>>> | I have several forms on the site that I use to collect information for
>>> our
>>> | classmates.  These forms were made using the FrontPage 2003's Form
>>> Page
>>> | Wizard and Feedback Form wizard.  These pages work with an extension
>>> of
>>> | .html or .htm but not with a .asp extension, therefore I can not
>>> password
>>> | word protect them by using a .asp extension and the vbscript include
>>> used on
>>> | the other pages.
>>> |
>>> | I have searched the net and can not find samples of how I can create
>>> the
>>> | forms and password protect them.  I am converting the site to use MS
>>> | Expression Web 2 instead of FP 2003.
>>> |
>>> | Does anyone have any ideas on where I can find some sample code on how
>>> to
>>> | create the forms and password protect them without having to change
>>> the way
>>> | I have the password protection currently set up?  This is the code I
>>> place
>>> | on each page that is password protected and has a .asp extension.  <%
>>> | @language="vbscript" %>
>>> | <!--#include virtual="/classsite/_private/logon.inc"-->.
>>> |
>>> | Any help would be greatly appreciated.
>>> |
>>> | Lee Steele
>>> |
>>>
>>>
>
>
Author
4 Jun 2009 6:43 PM
senn
<rleesteelenospam@comcast.net> skrev i meddelelsen
news:%23FS0VxT5JHA.1712@TK2MSFTNGP03.phx.gbl...
> Chris,
> Thanks for your reply.
>
> What I'm looking for is a sample form with the email capability already
> built in.  I am a relative newbie when it comes to using FP or EW.  I know
> enough to be able to modify existing forms, but to build one from scratch
> and add the email capability is beyond my skill level.
>
> Thanks again.
>
> Lee Steele
>
Try study this page. Especielly the lower part of the page
http://www.w3schools.com/asp/asp_inputforms.asp
You can still use your original forms.
In your forms you will have to set the action to the name of your
asp function: action = msgFromMyUser.asp
This asp function could be one like the one you got from Veign
Put the form input-names into the subject and body of this
asp function, because, when your user submit,
the inputs is sent to the function msgFromMyUser.asp
Where the names are changed with the content.
(mail to: yourself).
You see the idea.
Author
4 Jun 2009 6:56 PM
Veign
Adding to Sean.

When ever you have a question about any web technology check out the
tutorials at W3schools.com.  They are written with newbies in mind and are a
create place to get a starting foundation for most of common web
technologies.

--
Chris Hanscom - Microsoft MVP
Resource Center: http://www.veign.com/development-center.php
Veign's Blog: http://www.veign.com/blog
--
Web Development Help: http://www.veign.com/development-center-web.php
--


Show quoteHide quote
"senn" <senn@homeplace&.fix> wrote in message
news:%23%23AdjRU5JHA.4780@TK2MSFTNGP06.phx.gbl...
>
> <rleesteelenospam@comcast.net> skrev i meddelelsen
> news:%23FS0VxT5JHA.1712@TK2MSFTNGP03.phx.gbl...
>> Chris,
>> Thanks for your reply.
>>
>> What I'm looking for is a sample form with the email capability already
>> built in.  I am a relative newbie when it comes to using FP or EW.  I
>> know enough to be able to modify existing forms, but to build one from
>> scratch and add the email capability is beyond my skill level.
>>
>> Thanks again.
>>
>> Lee Steele
>>
> Try study this page. Especielly the lower part of the page
> http://www.w3schools.com/asp/asp_inputforms.asp
> You can still use your original forms.
> In your forms you will have to set the action to the name of your
> asp function: action = msgFromMyUser.asp
> This asp function could be one like the one you got from Veign
> Put the form input-names into the subject and body of this
> asp function, because, when your user submit,
> the inputs is sent to the function msgFromMyUser.asp
> Where the names are changed with the content.
> (mail to: yourself).
> You see the idea.
Author
4 Jun 2009 7:10 PM
rleesteelenospam
Thanks to both of you.  I'll see what I can figure out with that
information.

Lee Steele

Show quoteHide quote
"Veign" <NO_SPAMsupport@veign.comREMOVE> wrote in message
news:eaNvrYU5JHA.6004@TK2MSFTNGP02.phx.gbl...
> Adding to Sean.
>
> When ever you have a question about any web technology check out the
> tutorials at W3schools.com.  They are written with newbies in mind and are
> a create place to get a starting foundation for most of common web
> technologies.
>
> --
> Chris Hanscom - Microsoft MVP
> Resource Center: http://www.veign.com/development-center.php
> Veign's Blog: http://www.veign.com/blog
> --
> Web Development Help: http://www.veign.com/development-center-web.php
> --
>
>
> "senn" <senn@homeplace&.fix> wrote in message
> news:%23%23AdjRU5JHA.4780@TK2MSFTNGP06.phx.gbl...
>>
>> <rleesteelenospam@comcast.net> skrev i meddelelsen
>> news:%23FS0VxT5JHA.1712@TK2MSFTNGP03.phx.gbl...
>>> Chris,
>>> Thanks for your reply.
>>>
>>> What I'm looking for is a sample form with the email capability already
>>> built in.  I am a relative newbie when it comes to using FP or EW.  I
>>> know enough to be able to modify existing forms, but to build one from
>>> scratch and add the email capability is beyond my skill level.
>>>
>>> Thanks again.
>>>
>>> Lee Steele
>>>
>> Try study this page. Especielly the lower part of the page
>> http://www.w3schools.com/asp/asp_inputforms.asp
>> You can still use your original forms.
>> In your forms you will have to set the action to the name of your
>> asp function: action = msgFromMyUser.asp
>> This asp function could be one like the one you got from Veign
>> Put the form input-names into the subject and body of this
>> asp function, because, when your user submit,
>> the inputs is sent to the function msgFromMyUser.asp
>> Where the names are changed with the content.
>> (mail to: yourself).
>> You see the idea.
>
>
Author
4 Jun 2009 8:29 PM
rleesteelenospam
Chris - Sean,

After reading these messages and the code from Chris, I have a couple of
questions.  I take it the cSendMail.asp is a separate page and will be
called using the action = msgcSendMail.asp.  I assume I would have to rename
my form to match the names shown here in the .To,  .From, .subject and
..TextBody. and if I had other form fields I could just add the form names to
..TextBody.
'Populate the message
        With objMsg
            'Email Details
            .To = mToEmail
            .From = mFromEmail
            .Subject = mSubject

            'Optional
            '.Bcc = "BlindC***@MyDomain.com"

            'Populate the body
            .TextBody = mBody    'Plain text format
            '.HTMLBody = mBody    'HTML format

            'Send the email
            .Send
        End With
Are my assumptions correct?

Thanks
Lee Steele
<rleesteelenospam@comcast.net> wrote in message
Show quoteHide quote
news:eoR6bgU5JHA.972@TK2MSFTNGP06.phx.gbl...
> Thanks to both of you.  I'll see what I can figure out with that
> information.
>
> Lee Steele
>
> "Veign" <NO_SPAMsupport@veign.comREMOVE> wrote in message
> news:eaNvrYU5JHA.6004@TK2MSFTNGP02.phx.gbl...
>> Adding to Sean.
>>
>> When ever you have a question about any web technology check out the
>> tutorials at W3schools.com.  They are written with newbies in mind and
>> are a create place to get a starting foundation for most of common web
>> technologies.
>>
>> --
>> Chris Hanscom - Microsoft MVP
>> Resource Center: http://www.veign.com/development-center.php
>> Veign's Blog: http://www.veign.com/blog
>> --
>> Web Development Help: http://www.veign.com/development-center-web.php
>> --
>>
>>
>> "senn" <senn@homeplace&.fix> wrote in message
>> news:%23%23AdjRU5JHA.4780@TK2MSFTNGP06.phx.gbl...
>>>
>>> <rleesteelenospam@comcast.net> skrev i meddelelsen
>>> news:%23FS0VxT5JHA.1712@TK2MSFTNGP03.phx.gbl...
>>>> Chris,
>>>> Thanks for your reply.
>>>>
>>>> What I'm looking for is a sample form with the email capability already
>>>> built in.  I am a relative newbie when it comes to using FP or EW.  I
>>>> know enough to be able to modify existing forms, but to build one from
>>>> scratch and add the email capability is beyond my skill level.
>>>>
>>>> Thanks again.
>>>>
>>>> Lee Steele
>>>>
>>> Try study this page. Especielly the lower part of the page
>>> http://www.w3schools.com/asp/asp_inputforms.asp
>>> You can still use your original forms.
>>> In your forms you will have to set the action to the name of your
>>> asp function: action = msgFromMyUser.asp
>>> This asp function could be one like the one you got from Veign
>>> Put the form input-names into the subject and body of this
>>> asp function, because, when your user submit,
>>> the inputs is sent to the function msgFromMyUser.asp
>>> Where the names are changed with the content.
>>> (mail to: yourself).
>>> You see the idea.
>>
>>
Author
5 Jun 2009 11:30 AM
senn
<rleesteelenospam@comcast.net> skrev i meddelelsen
Show quoteHide quote
news:eGPNnMV5JHA.1196@TK2MSFTNGP03.phx.gbl...
> Chris - Sean,
>
> After reading these messages and the code from Chris, I have a couple of
> questions.  I take it the cSendMail.asp is a separate page and will be
> called using the action = msgcSendMail.asp.  I assume I would have to
> rename my form to match the names shown here in the .To,  .From, .subject
> and .TextBody. and if I had other form fields I could just add the form
> names to .TextBody.
> 'Populate the message
>     With objMsg
>     'Email Details
>         .To = mToEmail
>         .From = mFromEmail
>         .Subject = mSubject
>
>         'Optional
>         '.Bcc = "BlindC***@MyDomain.com"
>
>         'Populate the body
>         .TextBody = mBody 'Plain text format
>         '.HTMLBody = mBody 'HTML format
>
>         'Send the email
>         .Send
>     End With
> Are my assumptions correct?
>
> Thanks
> Lee Steele

It's best wait for an answer from another one as I only used php
in formmails. I think you'll have to use the reguest object as below.
For example, if you have an asp page of the name "usersFormMail.asp"
in the root folder with the content below, I think that'll do.
The names msubject, usersMailaddress and mtext is the names of
the input textboxes in your form
and let the action = usersFormMail.asp

Alternate, the reguest object should be build into the function
of Veigns. Let him tell you how you best can do this.

<%
Set mMail=CreateObject("CDO.Message")
With mMail
    .Subject = request.form("msubject")
    .From= request.form("usersMailaddress")
    .To="yourOwnMailAddress"
    .TextBody = request.form("mtext")
    .Send
End With
set myMail=nothing
%>
Author
5 Jun 2009 12:58 PM
Veign
I don't do anything with ASP anymore.  This is where you would need to do
some reading on Forms and the basic of ASP.  The function I provided would
simply be called from your form processing page.

--
Chris Hanscom - Microsoft MVP
Resource Center: http://www.veign.com/development-center.php
Veign's Blog: http://www.veign.com/blog
--
Web Development Help: http://www.veign.com/development-center-web.php
--


<rleesteelenospam@comcast.net> wrote in message
Show quoteHide quote
news:eGPNnMV5JHA.1196@TK2MSFTNGP03.phx.gbl...
> Chris - Sean,
>
> After reading these messages and the code from Chris, I have a couple of
> questions.  I take it the cSendMail.asp is a separate page and will be
> called using the action = msgcSendMail.asp.  I assume I would have to
> rename my form to match the names shown here in the .To,  .From, .subject
> and .TextBody. and if I had other form fields I could just add the form
> names to .TextBody.
> 'Populate the message
>     With objMsg
>     'Email Details
>         .To = mToEmail
>         .From = mFromEmail
>         .Subject = mSubject
>
>         'Optional
>         '.Bcc = "BlindC***@MyDomain.com"
>
>         'Populate the body
>         .TextBody = mBody 'Plain text format
>         '.HTMLBody = mBody 'HTML format
>
>         'Send the email
>         .Send
>     End With
> Are my assumptions correct?
>
> Thanks
> Lee Steele
> <rleesteelenospam@comcast.net> wrote in message
> news:eoR6bgU5JHA.972@TK2MSFTNGP06.phx.gbl...
>> Thanks to both of you.  I'll see what I can figure out with that
>> information.
>>
>> Lee Steele
>>
>> "Veign" <NO_SPAMsupport@veign.comREMOVE> wrote in message
>> news:eaNvrYU5JHA.6004@TK2MSFTNGP02.phx.gbl...
>>> Adding to Sean.
>>>
>>> When ever you have a question about any web technology check out the
>>> tutorials at W3schools.com.  They are written with newbies in mind and
>>> are a create place to get a starting foundation for most of common web
>>> technologies.
>>>
>>> --
>>> Chris Hanscom - Microsoft MVP
>>> Resource Center: http://www.veign.com/development-center.php
>>> Veign's Blog: http://www.veign.com/blog
>>> --
>>> Web Development Help: http://www.veign.com/development-center-web.php
>>> --
>>>
>>>
>>> "senn" <senn@homeplace&.fix> wrote in message
>>> news:%23%23AdjRU5JHA.4780@TK2MSFTNGP06.phx.gbl...
>>>>
>>>> <rleesteelenospam@comcast.net> skrev i meddelelsen
>>>> news:%23FS0VxT5JHA.1712@TK2MSFTNGP03.phx.gbl...
>>>>> Chris,
>>>>> Thanks for your reply.
>>>>>
>>>>> What I'm looking for is a sample form with the email capability
>>>>> already built in.  I am a relative newbie when it comes to using FP or
>>>>> EW.  I know enough to be able to modify existing forms, but to build
>>>>> one from scratch and add the email capability is beyond my skill
>>>>> level.
>>>>>
>>>>> Thanks again.
>>>>>
>>>>> Lee Steele
>>>>>
>>>> Try study this page. Especielly the lower part of the page
>>>> http://www.w3schools.com/asp/asp_inputforms.asp
>>>> You can still use your original forms.
>>>> In your forms you will have to set the action to the name of your
>>>> asp function: action = msgFromMyUser.asp
>>>> This asp function could be one like the one you got from Veign
>>>> Put the form input-names into the subject and body of this
>>>> asp function, because, when your user submit,
>>>> the inputs is sent to the function msgFromMyUser.asp
>>>> Where the names are changed with the content.
>>>> (mail to: yourself).
>>>> You see the idea.
>>>
>>>
Author
5 Jun 2009 4:49 PM
rleesteelenospam
Thanks to both of you for your help and comments.  I'll see what I can do.

Lee Steele

Show quoteHide quote
"Veign" <NO_SPAMsupport@veign.comREMOVE> wrote in message
news:eCyKF1d5JHA.6004@TK2MSFTNGP02.phx.gbl...
> I don't do anything with ASP anymore.  This is where you would need to do
> some reading on Forms and the basic of ASP.  The function I provided would
> simply be called from your form processing page.
>
> --
> Chris Hanscom - Microsoft MVP
> Resource Center: http://www.veign.com/development-center.php
> Veign's Blog: http://www.veign.com/blog
> --
> Web Development Help: http://www.veign.com/development-center-web.php
> --
>
>
> <rleesteelenospam@comcast.net> wrote in message
> news:eGPNnMV5JHA.1196@TK2MSFTNGP03.phx.gbl...
>> Chris - Sean,
>>
>> After reading these messages and the code from Chris, I have a couple of
>> questions.  I take it the cSendMail.asp is a separate page and will be
>> called using the action = msgcSendMail.asp.  I assume I would have to
>> rename my form to match the names shown here in the .To,  .From, .subject
>> and .TextBody. and if I had other form fields I could just add the form
>> names to .TextBody.
>> 'Populate the message
>>     With objMsg
>>     'Email Details
>>         .To = mToEmail
>>         .From = mFromEmail
>>         .Subject = mSubject
>>
>>         'Optional
>>         '.Bcc = "BlindC***@MyDomain.com"
>>
>>         'Populate the body
>>         .TextBody = mBody 'Plain text format
>>         '.HTMLBody = mBody 'HTML format
>>
>>         'Send the email
>>         .Send
>>     End With
>> Are my assumptions correct?
>>
>> Thanks
>> Lee Steele
>> <rleesteelenospam@comcast.net> wrote in message
>> news:eoR6bgU5JHA.972@TK2MSFTNGP06.phx.gbl...
>>> Thanks to both of you.  I'll see what I can figure out with that
>>> information.
>>>
>>> Lee Steele
>>>
>>> "Veign" <NO_SPAMsupport@veign.comREMOVE> wrote in message
>>> news:eaNvrYU5JHA.6004@TK2MSFTNGP02.phx.gbl...
>>>> Adding to Sean.
>>>>
>>>> When ever you have a question about any web technology check out the
>>>> tutorials at W3schools.com.  They are written with newbies in mind and
>>>> are a create place to get a starting foundation for most of common web
>>>> technologies.
>>>>
>>>> --
>>>> Chris Hanscom - Microsoft MVP
>>>> Resource Center: http://www.veign.com/development-center.php
>>>> Veign's Blog: http://www.veign.com/blog
>>>> --
>>>> Web Development Help: http://www.veign.com/development-center-web.php
>>>> --
>>>>
>>>>
>>>> "senn" <senn@homeplace&.fix> wrote in message
>>>> news:%23%23AdjRU5JHA.4780@TK2MSFTNGP06.phx.gbl...
>>>>>
>>>>> <rleesteelenospam@comcast.net> skrev i meddelelsen
>>>>> news:%23FS0VxT5JHA.1712@TK2MSFTNGP03.phx.gbl...
>>>>>> Chris,
>>>>>> Thanks for your reply.
>>>>>>
>>>>>> What I'm looking for is a sample form with the email capability
>>>>>> already built in.  I am a relative newbie when it comes to using FP
>>>>>> or EW.  I know enough to be able to modify existing forms, but to
>>>>>> build one from scratch and add the email capability is beyond my
>>>>>> skill level.
>>>>>>
>>>>>> Thanks again.
>>>>>>
>>>>>> Lee Steele
>>>>>>
>>>>> Try study this page. Especielly the lower part of the page
>>>>> http://www.w3schools.com/asp/asp_inputforms.asp
>>>>> You can still use your original forms.
>>>>> In your forms you will have to set the action to the name of your
>>>>> asp function: action = msgFromMyUser.asp
>>>>> This asp function could be one like the one you got from Veign
>>>>> Put the form input-names into the subject and body of this
>>>>> asp function, because, when your user submit,
>>>>> the inputs is sent to the function msgFromMyUser.asp
>>>>> Where the names are changed with the content.
>>>>> (mail to: yourself).
>>>>> You see the idea.
>>>>
>>>>
>
>
Author
5 Jun 2009 7:41 PM
senn
<rleesteelenospam@comcast.net> skrev i meddelelsen
news:eQSSN2f5JHA.1092@TK2MSFTNGP06.phx.gbl...
> Thanks to both of you for your help and comments.  I'll see what I can do.
>
> Lee Steele
>
Try read up on it here. It reveals a use of two pages. One html-page
with the form-code. And one asp-page. Both in the same directory
The name of the asp-page in the forms action.
You don't need to use the reguest object in mail.to
Instead write this:
mail.to = "yourname" & "@" & "yourdomain.com"
http://www.tizag.com/aspTutorial/aspFormsEmail.php
Author
5 Jun 2009 8:25 PM
rleesteelenospam
Thanks Senn,

I'll check it out.

Lee Steele

Show quoteHide quote
"senn" <senn@homeplace&.fix> wrote in message
news:uVALTWh5JHA.4116@TK2MSFTNGP04.phx.gbl...
>
> <rleesteelenospam@comcast.net> skrev i meddelelsen
> news:eQSSN2f5JHA.1092@TK2MSFTNGP06.phx.gbl...
>> Thanks to both of you for your help and comments.  I'll see what I can
>> do.
>>
>> Lee Steele
>>
> Try read up on it here. It reveals a use of two pages. One html-page
> with the form-code. And one asp-page. Both in the same directory
> The name of the asp-page in the forms action.
> You don't need to use the reguest object in mail.to
> Instead write this:
> mail.to = "yourname" & "@" & "yourdomain.com"
> http://www.tizag.com/aspTutorial/aspFormsEmail.php
>
Author
5 Jun 2009 9:52 PM
rleesteelenospam
Senn,
I tried using the code in the link you gave me.  I pasted the html code into
an existing template http://www.leesteele.info/classof62/newform.htm and the
asp code into a new blank page, located at
http://www.leesteele.info/classof62/Email.asp.  When I click submit on the
newform.htm form, I get the following error:

CDO.Message.1 error '80040220'
The "SendUsing" configuration value is invalid.
/classof62/Email.asp, line 18

The code on line 18 is identical to what is in the sample code.  I thought I
would try to use the code as written before trying to modify anything.  Do
you have any idea why this does not work?

By the way, my hosting firm is GoDaddy.com.  I have FPE activated and am
using IIS 6 on the hosting server.

Thanks

Lee Steele

Show quoteHide quote
"senn" <senn@homeplace&.fix> wrote in message
news:uVALTWh5JHA.4116@TK2MSFTNGP04.phx.gbl...
>
> <rleesteelenospam@comcast.net> skrev i meddelelsen
> news:eQSSN2f5JHA.1092@TK2MSFTNGP06.phx.gbl...
>> Thanks to both of you for your help and comments.  I'll see what I can
>> do.
>>
>> Lee Steele
>>
> Try read up on it here. It reveals a use of two pages. One html-page
> with the form-code. And one asp-page. Both in the same directory
> The name of the asp-page in the forms action.
> You don't need to use the reguest object in mail.to
> Instead write this:
> mail.to = "yourname" & "@" & "yourdomain.com"
> http://www.tizag.com/aspTutorial/aspFormsEmail.php
>
Author
6 Jun 2009 5:08 AM
senn
<rleesteelenospam@comcast.net> skrev i meddelelsen
Show quoteHide quote
news:%23rzEofi5JHA.4404@TK2MSFTNGP04.phx.gbl...
> Senn,
> I tried using the code in the link you gave me.  I pasted the html code
> into an existing template http://www.leesteele.info/classof62/newform.htm
> and the asp code into a new blank page, located at
> http://www.leesteele.info/classof62/Email.asp.  When I click submit on the
> newform.htm form, I get the following error:
>
> CDO.Message.1 error '80040220'
> The "SendUsing" configuration value is invalid.
> /classof62/Email.asp, line 18
>
> The code on line 18 is identical to what is in the sample code.  I thought
> I would try to use the code as written before trying to modify anything.
> Do you have any idea why this does not work?
>
> By the way, my hosting firm is GoDaddy.com.  I have FPE activated and am
> using IIS 6 on the hosting server.
>
> Thanks
>
> Lee Steele
>

I cannot see your asp code. You should post it.
But, I'm almost sure this is a configuration problem. There's a huge
amount of this topic found on google. Unfortunately, the config. seems
to change over time. Try to add this Configuration shown below,
except the first part inside <!--   -->  skip this in the first trial. As
a Windows 2000 Library must be to old.
About mail.server_name. See the name in Outlook (or your mail setup program)
under smtp outgoing server name.


<!--
METADATA
TYPE="typelib"
UUID="CD000000-8B95-11D1-82DB-00C04FB1625D"
NAME="CDO for Windows 2000 Library"
-->

<%
Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
..Item(cdoSendUsingMethod) = cdoSendUsingPort
..Item(cdoSMTPServer) = "<enter_mail.server_here>"
..Update
End With

Dim mail
Set mail = Server.CreateObject("CDO.Message")
With mail
    .To = Request.Form("To")
    .From = Request.Form("From")
    .Subject = Request.Form("Subject")
    .TextBody = Request.Form("Body")
    .Send()
End With
Response.Write("Mail Sent!")
Set mail = nothing
Set cdoConfig = nothing
%>

/senn
Author
6 Jun 2009 12:00 PM
rleesteelenospam
Thanks Senn,

Here is the code from the email.asp page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
</head>

<body>
<%
'Sends an email
Dim mail
Set mail = Server.CreateObject("CDO.Message")
mail.To = Request.Form("To")
mail.From = Request.Form("From")
mail.Subject = Request.Form("Subject")
mail.TextBody = Request.Form("Body")
mail.Send()
Response.Write("Mail Sent!")
'Destroy the mail object!
Set mail = nothing
%>

</body>

</html>

Lee Steele


Show quoteHide quote
"senn" <senn@homeplace&.fix> wrote in message
news:#stogTm5JHA.3860@TK2MSFTNGP05.phx.gbl...
>
> <rleesteelenospam@comcast.net> skrev i meddelelsen
> news:%23rzEofi5JHA.4404@TK2MSFTNGP04.phx.gbl...
>> Senn,
>> I tried using the code in the link you gave me.  I pasted the html code
>> into an existing template http://www.leesteele.info/classof62/newform.htm
>> and the asp code into a new blank page, located at
>> http://www.leesteele.info/classof62/Email.asp.  When I click submit on
>> the newform.htm form, I get the following error:
>>
>> CDO.Message.1 error '80040220'
>> The "SendUsing" configuration value is invalid.
>> /classof62/Email.asp, line 18
>>
>> The code on line 18 is identical to what is in the sample code.  I
>> thought I would try to use the code as written before trying to modify
>> anything. Do you have any idea why this does not work?
>>
>> By the way, my hosting firm is GoDaddy.com.  I have FPE activated and am
>> using IIS 6 on the hosting server.
>>
>> Thanks
>>
>> Lee Steele
>>
>
> I cannot see your asp code. You should post it.
> But, I'm almost sure this is a configuration problem. There's a huge
> amount of this topic found on google. Unfortunately, the config. seems
> to change over time. Try to add this Configuration shown below,
> except the first part inside <!--   -->  skip this in the first trial. As
> a Windows 2000 Library must be to old.
> About mail.server_name. See the name in Outlook (or your mail setup
> program)
> under smtp outgoing server name.
>
>
> <!--
> METADATA
> TYPE="typelib"
> UUID="CD000000-8B95-11D1-82DB-00C04FB1625D"
> NAME="CDO for Windows 2000 Library"
> -->
>
> <%
> Set cdoConfig = CreateObject("CDO.Configuration")
>
> With cdoConfig.Fields
> .Item(cdoSendUsingMethod) = cdoSendUsingPort
> .Item(cdoSMTPServer) = "<enter_mail.server_here>"
> .Update
> End With
>
> Dim mail
> Set mail = Server.CreateObject("CDO.Message")
> With mail
>    .To = Request.Form("To")
>    .From = Request.Form("From")
>    .Subject = Request.Form("Subject")
>    .TextBody = Request.Form("Body")
>    .Send()
> End With
> Response.Write("Mail Sent!")
> Set mail = nothing
> Set cdoConfig = nothing
> %>
>
> /senn
Author
6 Jun 2009 12:31 PM
senn
Did it work with the configuration I sent you.?
When adding the configuration, remember to add
Set cdoConfig = nothing
next to Set mail = nothing
/senn
Author
6 Jun 2009 12:56 PM
rleesteelenospam
Senn,

I got an error using the code you sent me:
    ADODB.Fields error '800a0bb9'
    Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.
    /classof62/Email.asp, line 14

Below is the code in the email.asp page:         Line 14 is
..Item(cdoSendUsingMethod) = cdoSendUsingPort



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
</head>

<body>
<%
Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
..Item(cdoSendUsingMethod) = cdoSendUsingPort
..Item(cdoSMTPServer) = "relay-server.secureserver.net"
..Update
End With

Dim mail
Set mail = Server.CreateObject("CDO.Message")
With mail
    .To = Request.Form("To")
    .From = Request.Form("From")
    .Subject = Request.Form("Subject")
    .TextBody = Request.Form("Body")
    .Send()
End With
Response.Write("Mail Sent!")
Set mail = nothing
Set cdoConfig = nothing
%>

</body>

</html>

I tried changing the email server to read smtpout.secureserver.net from
relay-server.secureserver.net and that did not help.  Godaddy.com had
information on using the relay-secure.secureserver.net on cdosys mailers.
The smtpout.securesever.net is the correct outbound for email.

Any other ideas?
--
Lee Steele
949 Chevy Chase St NW
Port Charlotte FL 33948-3628
Home (941) 743-2304
Cell (941) 286-1950
rleeste***@comcast.net

Show quoteHide quote
"senn" <senn@homeplace&.fix> wrote in message
news:uaUq2Kq5JHA.6004@TK2MSFTNGP02.phx.gbl...
> Did it work with the configuration I sent you.?
> When adding the configuration, remember to add
> Set cdoConfig = nothing next to Set mail = nothing
> /senn
>
>
Author
6 Jun 2009 2:08 PM
senn
<rleesteelenospam@comcast.net> skrev i meddelelsen
news:e6d5qYq5JHA.6004@TK2MSFTNGP02.phx.gbl...
> Senn,
>
> I got an error using the code you sent me:
>    ADODB.Fields error '800a0bb9'
>    Arguments are of the wrong type, are out of acceptable range, or are in
> conflict with one another.
>    /classof62/Email.asp, line 14
>
> Below is the code in the email.asp page:         Line 14 is
> .Item(cdoSendUsingMethod) = cdoSendUsingPort
>
>

Then try insert the Library the way I did - below.
In the meanwhile, I will take a look at the MSDN if any
other newer Library for XP or Vista.
Some of the regulars here is watching this tread and know how
to handle this. But no responce.!.
/senn


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
</head>

<body>

<!--
    METADATA
    TYPE="typelib"
    UUID="CD000000-8B95-11D1-82DB-00C04FB1625D"
    NAME="CDO for Windows 2000 Library"
-->
<%
Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
   .Item(cdoSendUsingMethod) = cdoSendUsingPort
   .Item(cdoSMTPServer) = "relay-server.secureserver.net"
   .Update
End With

Dim mail
Set mail = Server.CreateObject("CDO.Message")
With mail
    .To = Request.Form("To")
    .From = Request.Form("From")
    .Subject = Request.Form("Subject")
    .TextBody = Request.Form("Body")
    .Send()
End With
Response.Write("Mail Sent!")
Set mail = nothing
Set cdoConfig = nothing
%>
</body>
</html>
Author
6 Jun 2009 3:54 PM
senn
In case the Library is not installed this one is an alternative.
Try to configure this with your server name.
The configuration.Fields.Item(.........../ sendusing should probably be
changed to 1 instead of 2. Depends on...... Try both.
It's not a good idea reguest.form("To")
I would put in: "youraddress" & "@" & "domain.com"
Because, If someone try to send to other than you. Even if
you plan this. It will not work as the server is another than
yours and hence have an other name.
You got to send a trial-mail to yourself.
/senn

%>
Dim mymail
set mymail = createobject("CDO.Message")
mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")="mail.domain.com"
'this should be changed 'to the smtp server you have access to
mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=25
'or the port configured for smtp
mymail.Configuration.Fields.Update

With mymail
    .To = request.Form("To")
    .From = request.Form("From")
    .Subject = request.Form("Subject")
    .TextBody = request.Form("Body")
    .Send()
End With
Response.Write("Mail Sent!")
Set mymail = nothing
%>
Author
6 Jun 2009 4:18 PM
rleesteelenospam
Senn,
Thanks for all of your help.  After doing a little bit of investigation ( I
admit I should have done it earlier), my hosting service had a script for
sending email from an .asp page.  It sends the form data as a .txt
attachment to the email but it does work on .asp pages.  Until I can figure
something else out, I will use it.

Now I need to figure out how to write the data from the form to a xxx.txt
page in the root _private folder as FP does when using its form wizards.
Sometime email gets lost and this is a backup of the data sent.

Again, Thanks for all of your help.

Lee Steele

Show quoteHide quote
"senn" <senn@homeplace&.fix> wrote in message
news:utUqH8r5JHA.4936@TK2MSFTNGP04.phx.gbl...
> In case the Library is not installed this one is an alternative.
> Try to configure this with your server name.
> The configuration.Fields.Item(.........../ sendusing should probably be
> changed to 1 instead of 2. Depends on...... Try both.
> It's not a good idea reguest.form("To")
> I would put in: "youraddress" & "@" & "domain.com"
> Because, If someone try to send to other than you. Even if
> you plan this. It will not work as the server is another than
> yours and hence have an other name.
> You got to send a trial-mail to yourself.
> /senn
>
> %>
> Dim mymail
> set mymail = createobject("CDO.Message")
> mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
> mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")="mail.domain.com"
> 'this should be changed 'to the smtp server you have access to
> mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=25
> 'or the port configured for smtp
> mymail.Configuration.Fields.Update
>
> With mymail
>    .To = request.Form("To")
>    .From = request.Form("From")
>    .Subject = request.Form("Subject")
>    .TextBody = request.Form("Body")
>    .Send()
> End With
> Response.Write("Mail Sent!")
> Set mymail = nothing
> %>
Author
7 Jun 2009 6:14 AM
senn
<rleesteelenospam@comcast.net> skrev i meddelelsen
Show quoteHide quote
news:u2La%23Js5JHA.6136@TK2MSFTNGP03.phx.gbl...
> Senn,
> Thanks for all of your help.  After doing a little bit of investigation
> ( I admit I should have done it earlier), my hosting service had a script
> for sending email from an .asp page.  It sends the form data as a .txt
> attachment to the email but it does work on .asp pages.  Until I can
> figure something else out, I will use it.
>
> Now I need to figure out how to write the data from the form to a xxx.txt
> page in the root _private folder as FP does when using its form wizards.
> Sometime email gets lost and this is a backup of the data sent.
>
> Again, Thanks for all of your help.
>
> Lee Steele
>

Probably that's the easy way. If you come into trouble with this too and
go back, then consider, your email server might use authentication. If so
include
and set these two lines below.
In this thread, I learned -once again -a lot of crap-code exists on the
internet.
Why sending an e-mail with asp given rise to a wealth on this subject. Also,
unbelievable cannot be set up by some help in EW2. Wonder, if it can in EW3.

mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername")
= "MAIL_SMTP_USERNAME"
mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword")
= "MAIL_SMTP_PASSWORD"

Don't answer this time, thank you.
N.B. It's not a good idea posting your e-mail here. Someone of the
regulars is ready to use it and send you a well-working code to your
problem.
-Good for you. But thereby cheating someone else. Happen here before.
Just go down and see the thread of date 4/11 subject:
Display issue Firefox and IE6 & 7
/senn

Show quoteHide quote
> "senn" <senn@homeplace&.fix> wrote in message
> news:utUqH8r5JHA.4936@TK2MSFTNGP04.phx.gbl...
>> In case the Library is not installed this one is an alternative.
>> Try to configure this with your server name.
>> The configuration.Fields.Item(.........../ sendusing should probably be
>> changed to 1 instead of 2. Depends on...... Try both.
>> It's not a good idea reguest.form("To")
>> I would put in: "youraddress" & "@" & "domain.com"
>> Because, If someone try to send to other than you. Even if
>> you plan this. It will not work as the server is another than
>> yours and hence have an other name.
>> You got to send a trial-mail to yourself.
>> /senn
>>
>> %>
>> Dim mymail
>> set mymail = createobject("CDO.Message")
>> mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
>> mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")="mail.domain.com"
>> 'this should be changed 'to the smtp server you have access to
>> mymail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=25
>> 'or the port configured for smtp
>> mymail.Configuration.Fields.Update
>>
>> With mymail
>>    .To = request.Form("To")
>>    .From = request.Form("From")
>>    .Subject = request.Form("Subject")
>>    .TextBody = request.Form("Body")
>>    .Send()
>> End With
>> Response.Write("Mail Sent!")
>> Set mymail = nothing
>> %>
>

Bookmark and Share