FrontPage Server Extensions for Windows - Cannot run the FrontPage Server Extensions on this page

This is Interesting: Free IT Magazines  
Home > Archive > FrontPage Server Extensions for Windows > January 2005 > Cannot run the FrontPage Server Extensions on this page





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Cannot run the FrontPage Server Extensions on this page
kaykayIT

2005-01-03, 5:49 pm

I used the procedure in the File Upload Whitepaper from Microsoft to create a
form on a secure subweb in FP 2002. Orginally the web it was on a Windows
2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with IIS
6.0. Since then I have had problems with my forms working. This particular
form which is equivalent to the "Process1.asp" form in the whitepaper, gives
me this error "Cannot run the FrontPage Server Extensions on this page". All
the KB articles talk about using the Feedback form (didn't use this) and
Apache web server (we don't have that). Still cannot find the problem.
Please your help is greatly appreciated. I have been working for days on
this problem.
David Berry

2005-01-03, 8:46 pm

You cannot use features that require the FrontPage Server Extensions on an
ASP page. Make the page a .HTM page and it will work.

--
David Berry - MCP
Microsoft MVP - FrontPage
FrontPage Support: http://www.net-sites.com/sitebuilder/
-----------------------------------
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
-----------------------------------
"kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
>I used the procedure in the File Upload Whitepaper from Microsoft to create
>a
> form on a secure subweb in FP 2002. Orginally the web it was on a Windows
> 2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with
> IIS
> 6.0. Since then I have had problems with my forms working. This
> particular
> form which is equivalent to the "Process1.asp" form in the whitepaper,
> gives
> me this error "Cannot run the FrontPage Server Extensions on this page".
> All
> the KB articles talk about using the Feedback form (didn't use this) and
> Apache web server (we don't have that). Still cannot find the problem.
> Please your help is greatly appreciated. I have been working for days on
> this problem.



kaykayIT

2005-01-04, 5:56 pm

Thank you David. However, I changed the pages to htm but I get the same
message except it says: Cannot run the FrontPage Server Extensions on this
page: "https://www.global-construction.com/secure/Employment1.htm". There
must be something else wrong. Please help.

"David Berry" wrote:

> You cannot use features that require the FrontPage Server Extensions on an
> ASP page. Make the page a .HTM page and it will work.
>
> --
> David Berry - MCP
> Microsoft MVP - FrontPage
> FrontPage Support: http://www.net-sites.com/sitebuilder/
> -----------------------------------
> To assist you in getting the best answers for FrontPage support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
> -----------------------------------
> "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
> news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
>
>
>

kaykayIT

2005-01-04, 5:56 pm

Since I sent this reply I have searched the web for an answer. I have seen
literally hundreds of other pages listed with this same error, mostly html
pages. It seems to be a common problem that so far there is no answer for.

"kaykayIT" wrote:
[vbcol=seagreen]
> Thank you David. However, I changed the pages to htm but I get the same
> message except it says: Cannot run the FrontPage Server Extensions on this
> page: "https://www.global-construction.com/secure/Employment1.htm". There
> must be something else wrong. Please help.
>
> "David Berry" wrote:
>
Ronx

2005-01-04, 5:56 pm

Are the extensions installed on port 443? - required for https working.
The default is to install extensions only on port 80, for http pages.

--
Ron Symonds (Microsoft MVP - FrontPage)
Reply only to group - emails will be deleted unread.


"kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...[vbcol=seagreen]
> Since I sent this reply I have searched the web for an answer. I have
> seen
> literally hundreds of other pages listed with this same error, mostly html
> pages. It seems to be a common problem that so far there is no answer
> for.
>
> "kaykayIT" wrote:
>


Ronx

2005-01-04, 5:56 pm

FYI - your security certificate brings up warnings in IE, and I would not
trust the certificate issuer

--
Ron Symonds (Microsoft MVP - FrontPage)
Reply only to group - emails will be deleted unread.


"kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...[vbcol=seagreen]
> Since I sent this reply I have searched the web for an answer. I have
> seen
> literally hundreds of other pages listed with this same error, mostly html
> pages. It seems to be a common problem that so far there is no answer
> for.
>
> "kaykayIT" wrote:
>


Stefan B Rusynko

2005-01-04, 5:56 pm

You can't use or mix ASP (VBscript) in a Html page
- all your ASP coding is exposed and is not being server side processed

You appear to be attempting to get data from a database but the "database" connection is just to a text file (eform_results.txt),
which probably is in a folder w/o write permissions
- but for what reason is not obvious because you are asking for User input in the form, so you should not be using the connection on
that page (or ASP values in your form)

And you are attempting to send to a html page instead of a ASP page action="Employment2.htm" page
which doesn't exist (but Employment2.asp does exist)

Either
- Remove all the ASP and just use the form to send the results to the .txt file eform_results.txt (in your _private folder which has
write permissions)

- Or use a valid database and ASP for server side processing on a .asp page

Explain what you are really attempting to do (since you are mixing actions)

--

________________________________________
_____
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
________________________________________
_____


"kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...
| Since I sent this reply I have searched the web for an answer. I have seen
| literally hundreds of other pages listed with this same error, mostly html
| pages. It seems to be a common problem that so far there is no answer for.
|
| "kaykayIT" wrote:
|
| > Thank you David. However, I changed the pages to htm but I get the same
| > message except it says: Cannot run the FrontPage Server Extensions on this
| > page: "https://www.global-construction.com/secure/Employment1.htm". There
| > must be something else wrong. Please help.
| >
| > "David Berry" wrote:
| >
| > > You cannot use features that require the FrontPage Server Extensions on an
| > > ASP page. Make the page a .HTM page and it will work.
| > >
| > > --
| > > David Berry - MCP
| > > Microsoft MVP - FrontPage
| > > FrontPage Support: http://www.net-sites.com/sitebuilder/
| > > -----------------------------------
| > > To assist you in getting the best answers for FrontPage support see:
| > > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > > -----------------------------------
| > > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
| > > news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
| > > >I used the procedure in the File Upload Whitepaper from Microsoft to create
| > > >a
| > > > form on a secure subweb in FP 2002. Orginally the web it was on a Windows
| > > > 2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with
| > > > IIS
| > > > 6.0. Since then I have had problems with my forms working. This
| > > > particular
| > > > form which is equivalent to the "Process1.asp" form in the whitepaper,
| > > > gives
| > > > me this error "Cannot run the FrontPage Server Extensions on this page".
| > > > All
| > > > the KB articles talk about using the Feedback form (didn't use this) and
| > > > Apache web server (we don't have that). Still cannot find the problem.
| > > > Please your help is greatly appreciated. I have been working for days on
| > > > this problem.
| > >
| > >
| > >


kaykayIT

2005-01-05, 5:53 pm

Thanks so much for all your responses. The pages are setup exactly as the
outlined in this white paper
http://support.microsoft.com/defaul...kb;en-us;288328 which shows
"How to send form results to a database and an e-mail recipient and use the
File Upload component simultaneously". This worked before in IIS 5.0 on a
Windows 2000 server. But when we transferred it to Windows 2003 Server does
not work anymore. The pages that were created are form page(Employment.htm),
a confirmation page(EmployProcess.htm) which redirects to the first .asp
page(Employment1.asp). The first asp page is like a confirmation page. By
clicking Submit on Employment1.asp, you write the information in the form to
the Access database using a custom SQL statement in the second asp
page(Employment2.asp).

"Stefan B Rusynko" wrote:

> You can't use or mix ASP (VBscript) in a Html page
> - all your ASP coding is exposed and is not being server side processed
>
> You appear to be attempting to get data from a database but the "database" connection is just to a text file (eform_results.txt),
> which probably is in a folder w/o write permissions
> - but for what reason is not obvious because you are asking for User input in the form, so you should not be using the connection on
> that page (or ASP values in your form)
>
> And you are attempting to send to a html page instead of a ASP page action="Employment2.htm" page
> which doesn't exist (but Employment2.asp does exist)
>
> Either
> - Remove all the ASP and just use the form to send the results to the .txt file eform_results.txt (in your _private folder which has
> write permissions)
>
> - Or use a valid database and ASP for server side processing on a .asp page
>
> Explain what you are really attempting to do (since you are mixing actions)
>
> --
>
> ________________________________________
_____
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
> ________________________________________
_____
>
>
> "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...
> | Since I sent this reply I have searched the web for an answer. I have seen
> | literally hundreds of other pages listed with this same error, mostly html
> | pages. It seems to be a common problem that so far there is no answer for.
> |
> | "kaykayIT" wrote:
> |
> | > Thank you David. However, I changed the pages to htm but I get the same
> | > message except it says: Cannot run the FrontPage Server Extensions on this
> | > page: "https://www.global-construction.com/secure/Employment1.htm". There
> | > must be something else wrong. Please help.
> | >
> | > "David Berry" wrote:
> | >
> | > > You cannot use features that require the FrontPage Server Extensions on an
> | > > ASP page. Make the page a .HTM page and it will work.
> | > >
> | > > --
> | > > David Berry - MCP
> | > > Microsoft MVP - FrontPage
> | > > FrontPage Support: http://www.net-sites.com/sitebuilder/
> | > > -----------------------------------
> | > > To assist you in getting the best answers for FrontPage support see:
> | > > http://www.net-sites.com/sitebuilder/newsgroups.asp
> | > > -----------------------------------
> | > > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
> | > > news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
> | > > >I used the procedure in the File Upload Whitepaper from Microsoft to create
> | > > >a
> | > > > form on a secure subweb in FP 2002. Orginally the web it was on a Windows
> | > > > 2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with
> | > > > IIS
> | > > > 6.0. Since then I have had problems with my forms working. This
> | > > > particular
> | > > > form which is equivalent to the "Process1.asp" form in the whitepaper,
> | > > > gives
> | > > > me this error "Cannot run the FrontPage Server Extensions on this page".
> | > > > All
> | > > > the KB articles talk about using the Feedback form (didn't use this) and
> | > > > Apache web server (we don't have that). Still cannot find the problem.
> | > > > Please your help is greatly appreciated. I have been working for days on
> | > > > this problem.
> | > >
> | > >
> | > >
>
>
>

Stefan B Rusynko

2005-01-05, 5:53 pm

And did you redo the permissions for the file upload folder (Files/) according to the same instructions after the move
Employment.htm sends to _private/eform_results.txt

--

________________________________________
_____
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
________________________________________
_____


"kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:38B88F1F-D5DE-43B2-AE19-07EBB9014383@microsoft.com...
| Thanks so much for all your responses. The pages are setup exactly as the
| outlined in this white paper
| http://support.microsoft.com/defaul...kb;en-us;288328 which shows
| "How to send form results to a database and an e-mail recipient and use the
| File Upload component simultaneously". This worked before in IIS 5.0 on a
| Windows 2000 server. But when we transferred it to Windows 2003 Server does
| not work anymore. The pages that were created are form page(Employment.htm),
| a confirmation page(EmployProcess.htm) which redirects to the first .asp
| page(Employment1.asp). The first asp page is like a confirmation page. By
| clicking Submit on Employment1.asp, you write the information in the form to
| the Access database using a custom SQL statement in the second asp
| page(Employment2.asp).
|
| "Stefan B Rusynko" wrote:
|
| > You can't use or mix ASP (VBscript) in a Html page
| > - all your ASP coding is exposed and is not being server side processed
| >
| > You appear to be attempting to get data from a database but the "database" connection is just to a text file
(eform_results.txt),
| > which probably is in a folder w/o write permissions
| > - but for what reason is not obvious because you are asking for User input in the form, so you should not be using the
connection on
| > that page (or ASP values in your form)
| >
| > And you are attempting to send to a html page instead of a ASP page action="Employment2.htm" page
| > which doesn't exist (but Employment2.asp does exist)
| >
| > Either
| > - Remove all the ASP and just use the form to send the results to the .txt file eform_results.txt (in your _private folder which
has
| > write permissions)
| >
| > - Or use a valid database and ASP for server side processing on a .asp page
| >
| > Explain what you are really attempting to do (since you are mixing actions)
| >
| > --
| >
| > ________________________________________
_____
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > ________________________________________
_____
| >
| >
| > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...
| > | Since I sent this reply I have searched the web for an answer. I have seen
| > | literally hundreds of other pages listed with this same error, mostly html
| > | pages. It seems to be a common problem that so far there is no answer for.
| > |
| > | "kaykayIT" wrote:
| > |
| > | > Thank you David. However, I changed the pages to htm but I get the same
| > | > message except it says: Cannot run the FrontPage Server Extensions on this
| > | > page: "https://www.global-construction.com/secure/Employment1.htm". There
| > | > must be something else wrong. Please help.
| > | >
| > | > "David Berry" wrote:
| > | >
| > | > > You cannot use features that require the FrontPage Server Extensions on an
| > | > > ASP page. Make the page a .HTM page and it will work.
| > | > >
| > | > > --
| > | > > David Berry - MCP
| > | > > Microsoft MVP - FrontPage
| > | > > FrontPage Support: http://www.net-sites.com/sitebuilder/
| > | > > -----------------------------------
| > | > > To assist you in getting the best answers for FrontPage support see:
| > | > > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > > -----------------------------------
| > | > > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
| > | > > news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
| > | > > >I used the procedure in the File Upload Whitepaper from Microsoft to create
| > | > > >a
| > | > > > form on a secure subweb in FP 2002. Orginally the web it was on a Windows
| > | > > > 2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with
| > | > > > IIS
| > | > > > 6.0. Since then I have had problems with my forms working. This
| > | > > > particular
| > | > > > form which is equivalent to the "Process1.asp" form in the whitepaper,
| > | > > > gives
| > | > > > me this error "Cannot run the FrontPage Server Extensions on this page".
| > | > > > All
| > | > > > the KB articles talk about using the Feedback form (didn't use this) and
| > | > > > Apache web server (we don't have that). Still cannot find the problem.
| > | > > > Please your help is greatly appreciated. I have been working for days on
| > | > > > this problem.
| > | > >
| > | > >
| > | > >
| >
| >
| >


kaykayIT

2005-01-05, 5:53 pm

Thank you for your help. Yes I changed the permissions on the /Files folder
to what's specified in the white paper. The form results on Employment.htm
is writing to _private/eform_results.txt. It just does not show the form
results in Employment1.asp as it should.

"Stefan B Rusynko" wrote:

> And did you redo the permissions for the file upload folder (Files/) according to the same instructions after the move
> Employment.htm sends to _private/eform_results.txt
>
> --
>
> ________________________________________
_____
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
> ________________________________________
_____
>
>
> "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:38B88F1F-D5DE-43B2-AE19-07EBB9014383@microsoft.com...
> | Thanks so much for all your responses. The pages are setup exactly as the
> | outlined in this white paper
> | http://support.microsoft.com/defaul...kb;en-us;288328 which shows
> | "How to send form results to a database and an e-mail recipient and use the
> | File Upload component simultaneously". This worked before in IIS 5.0 on a
> | Windows 2000 server. But when we transferred it to Windows 2003 Server does
> | not work anymore. The pages that were created are form page(Employment.htm),
> | a confirmation page(EmployProcess.htm) which redirects to the first .asp
> | page(Employment1.asp). The first asp page is like a confirmation page. By
> | clicking Submit on Employment1.asp, you write the information in the form to
> | the Access database using a custom SQL statement in the second asp
> | page(Employment2.asp).
> |
> | "Stefan B Rusynko" wrote:
> |
> | > You can't use or mix ASP (VBscript) in a Html page
> | > - all your ASP coding is exposed and is not being server side processed
> | >
> | > You appear to be attempting to get data from a database but the "database" connection is just to a text file
> (eform_results.txt),
> | > which probably is in a folder w/o write permissions
> | > - but for what reason is not obvious because you are asking for User input in the form, so you should not be using the
> connection on
> | > that page (or ASP values in your form)
> | >
> | > And you are attempting to send to a html page instead of a ASP page action="Employment2.htm" page
> | > which doesn't exist (but Employment2.asp does exist)
> | >
> | > Either
> | > - Remove all the ASP and just use the form to send the results to the .txt file eform_results.txt (in your _private folder which
> has
> | > write permissions)
> | >
> | > - Or use a valid database and ASP for server side processing on a .asp page
> | >
> | > Explain what you are really attempting to do (since you are mixing actions)
> | >
> | > --
> | >
> | > ________________________________________
_____
> | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> | > "Warning - Using the F1 Key will not break anything!" (-;
> | > To find the best Newsgroup for FrontPage support see:
> | > http://www.net-sites.com/sitebuilder/newsgroups.asp
> | > ________________________________________
_____
> | >
> | >
> | > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...
> | > | Since I sent this reply I have searched the web for an answer. I have seen
> | > | literally hundreds of other pages listed with this same error, mostly html
> | > | pages. It seems to be a common problem that so far there is no answer for.
> | > |
> | > | "kaykayIT" wrote:
> | > |
> | > | > Thank you David. However, I changed the pages to htm but I get the same
> | > | > message except it says: Cannot run the FrontPage Server Extensions on this
> | > | > page: "https://www.global-construction.com/secure/Employment1.htm". There
> | > | > must be something else wrong. Please help.
> | > | >
> | > | > "David Berry" wrote:
> | > | >
> | > | > > You cannot use features that require the FrontPage Server Extensions on an
> | > | > > ASP page. Make the page a .HTM page and it will work.
> | > | > >
> | > | > > --
> | > | > > David Berry - MCP
> | > | > > Microsoft MVP - FrontPage
> | > | > > FrontPage Support: http://www.net-sites.com/sitebuilder/
> | > | > > -----------------------------------
> | > | > > To assist you in getting the best answers for FrontPage support see:
> | > | > > http://www.net-sites.com/sitebuilder/newsgroups.asp
> | > | > > -----------------------------------
> | > | > > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
> | > | > > news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
> | > | > > >I used the procedure in the File Upload Whitepaper from Microsoft to create
> | > | > > >a
> | > | > > > form on a secure subweb in FP 2002. Orginally the web it was on a Windows
> | > | > > > 2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with
> | > | > > > IIS
> | > | > > > 6.0. Since then I have had problems with my forms working. This
> | > | > > > particular
> | > | > > > form which is equivalent to the "Process1.asp" form in the whitepaper,
> | > | > > > gives
> | > | > > > me this error "Cannot run the FrontPage Server Extensions on this page".
> | > | > > > All
> | > | > > > the KB articles talk about using the Feedback form (didn't use this) and
> | > | > > > Apache web server (we don't have that). Still cannot find the problem.
> | > | > > > Please your help is greatly appreciated. I have been working for days on
> | > | > > > this problem.
> | > | > >
> | > | > >
> | > | > >
> | >
> | >
> | >
>
>
>

Stefan B Rusynko

2005-01-05, 5:53 pm

Then your ASP code in Employment1.asp is the problem

--

________________________________________
_____
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
________________________________________
_____


"kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:D79C9B12-6AA6-4EF8-A6A5-10B7D38B8CDA@microsoft.com...
| Thank you for your help. Yes I changed the permissions on the /Files folder
| to what's specified in the white paper. The form results on Employment.htm
| is writing to _private/eform_results.txt. It just does not show the form
| results in Employment1.asp as it should.
|
| "Stefan B Rusynko" wrote:
|
| > And did you redo the permissions for the file upload folder (Files/) according to the same instructions after the move
| > Employment.htm sends to _private/eform_results.txt
| >
| > --
| >
| > ________________________________________
_____
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > ________________________________________
_____
| >
| >
| > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:38B88F1F-D5DE-43B2-AE19-07EBB9014383@microsoft.com...
| > | Thanks so much for all your responses. The pages are setup exactly as the
| > | outlined in this white paper
| > | http://support.microsoft.com/defaul...kb;en-us;288328 which shows
| > | "How to send form results to a database and an e-mail recipient and use the
| > | File Upload component simultaneously". This worked before in IIS 5.0 on a
| > | Windows 2000 server. But when we transferred it to Windows 2003 Server does
| > | not work anymore. The pages that were created are form page(Employment.htm),
| > | a confirmation page(EmployProcess.htm) which redirects to the first .asp
| > | page(Employment1.asp). The first asp page is like a confirmation page. By
| > | clicking Submit on Employment1.asp, you write the information in the form to
| > | the Access database using a custom SQL statement in the second asp
| > | page(Employment2.asp).
| > |
| > | "Stefan B Rusynko" wrote:
| > |
| > | > You can't use or mix ASP (VBscript) in a Html page
| > | > - all your ASP coding is exposed and is not being server side processed
| > | >
| > | > You appear to be attempting to get data from a database but the "database" connection is just to a text file
| > (eform_results.txt),
| > | > which probably is in a folder w/o write permissions
| > | > - but for what reason is not obvious because you are asking for User input in the form, so you should not be using the
| > connection on
| > | > that page (or ASP values in your form)
| > | >
| > | > And you are attempting to send to a html page instead of a ASP page action="Employment2.htm" page
| > | > which doesn't exist (but Employment2.asp does exist)
| > | >
| > | > Either
| > | > - Remove all the ASP and just use the form to send the results to the .txt file eform_results.txt (in your _private folder
which
| > has
| > | > write permissions)
| > | >
| > | > - Or use a valid database and ASP for server side processing on a .asp page
| > | >
| > | > Explain what you are really attempting to do (since you are mixing actions)
| > | >
| > | > --
| > | >
| > | > ________________________________________
_____
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > To find the best Newsgroup for FrontPage support see:
| > | > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > ________________________________________
_____
| > | >
| > | >
| > | > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...
| > | > | Since I sent this reply I have searched the web for an answer. I have seen
| > | > | literally hundreds of other pages listed with this same error, mostly html
| > | > | pages. It seems to be a common problem that so far there is no answer for.
| > | > |
| > | > | "kaykayIT" wrote:
| > | > |
| > | > | > Thank you David. However, I changed the pages to htm but I get the same
| > | > | > message except it says: Cannot run the FrontPage Server Extensions on this
| > | > | > page: "https://www.global-construction.com/secure/Employment1.htm". There
| > | > | > must be something else wrong. Please help.
| > | > | >
| > | > | > "David Berry" wrote:
| > | > | >
| > | > | > > You cannot use features that require the FrontPage Server Extensions on an
| > | > | > > ASP page. Make the page a .HTM page and it will work.
| > | > | > >
| > | > | > > --
| > | > | > > David Berry - MCP
| > | > | > > Microsoft MVP - FrontPage
| > | > | > > FrontPage Support: http://www.net-sites.com/sitebuilder/
| > | > | > > -----------------------------------
| > | > | > > To assist you in getting the best answers for FrontPage support see:
| > | > | > > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > | > > -----------------------------------
| > | > | > > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
| > | > | > > news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
| > | > | > > >I used the procedure in the File Upload Whitepaper from Microsoft to create
| > | > | > > >a
| > | > | > > > form on a secure subweb in FP 2002. Orginally the web it was on a Windows
| > | > | > > > 2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with
| > | > | > > > IIS
| > | > | > > > 6.0. Since then I have had problems with my forms working. This
| > | > | > > > particular
| > | > | > > > form which is equivalent to the "Process1.asp" form in the whitepaper,
| > | > | > > > gives
| > | > | > > > me this error "Cannot run the FrontPage Server Extensions on this page".
| > | > | > > > All
| > | > | > > > the KB articles talk about using the Feedback form (didn't use this) and
| > | > | > > > Apache web server (we don't have that). Still cannot find the problem.
| > | > | > > > Please your help is greatly appreciated. I have been working for days on
| > | > | > > > this problem.
| > | > | > >
| > | > | > >
| > | > | > >
| > | >
| > | >
| > | >
| >
| >
| >


kaykayIT

2005-01-05, 5:53 pm

Hello Stefan, Thank you for your help. I have checked and rechecked my code
and did not find anything out of the way. This code worked on Windows 2000
Server and IIS 5. If it had never worked I can see the code as being the
problem. But there must have been something that happened between the move
to the Windows 2003 Server machine. I am still digging for an answer.

"Stefan B Rusynko" wrote:

> Then your ASP code in Employment1.asp is the problem
>
> --
>
> ________________________________________
_____
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
> ________________________________________
_____
>
>
> "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:D79C9B12-6AA6-4EF8-A6A5-10B7D38B8CDA@microsoft.com...
> | Thank you for your help. Yes I changed the permissions on the /Files folder
> | to what's specified in the white paper. The form results on Employment.htm
> | is writing to _private/eform_results.txt. It just does not show the form
> | results in Employment1.asp as it should.
> |
> | "Stefan B Rusynko" wrote:
> |
> | > And did you redo the permissions for the file upload folder (Files/) according to the same instructions after the move
> | > Employment.htm sends to _private/eform_results.txt
> | >
> | > --
> | >
> | > ________________________________________
_____
> | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> | > "Warning - Using the F1 Key will not break anything!" (-;
> | > To find the best Newsgroup for FrontPage support see:
> | > http://www.net-sites.com/sitebuilder/newsgroups.asp
> | > ________________________________________
_____
> | >
> | >
> | > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:38B88F1F-D5DE-43B2-AE19-07EBB9014383@microsoft.com...
> | > | Thanks so much for all your responses. The pages are setup exactly as the
> | > | outlined in this white paper
> | > | http://support.microsoft.com/defaul...kb;en-us;288328 which shows
> | > | "How to send form results to a database and an e-mail recipient and use the
> | > | File Upload component simultaneously". This worked before in IIS 5.0 on a
> | > | Windows 2000 server. But when we transferred it to Windows 2003 Server does
> | > | not work anymore. The pages that were created are form page(Employment.htm),
> | > | a confirmation page(EmployProcess.htm) which redirects to the first .asp
> | > | page(Employment1.asp). The first asp page is like a confirmation page. By
> | > | clicking Submit on Employment1.asp, you write the information in the form to
> | > | the Access database using a custom SQL statement in the second asp
> | > | page(Employment2.asp).
> | > |
> | > | "Stefan B Rusynko" wrote:
> | > |
> | > | > You can't use or mix ASP (VBscript) in a Html page
> | > | > - all your ASP coding is exposed and is not being server side processed
> | > | >
> | > | > You appear to be attempting to get data from a database but the "database" connection is just to a text file
> | > (eform_results.txt),
> | > | > which probably is in a folder w/o write permissions
> | > | > - but for what reason is not obvious because you are asking for User input in the form, so you should not be using the
> | > connection on
> | > | > that page (or ASP values in your form)
> | > | >
> | > | > And you are attempting to send to a html page instead of a ASP page action="Employment2.htm" page
> | > | > which doesn't exist (but Employment2.asp does exist)
> | > | >
> | > | > Either
> | > | > - Remove all the ASP and just use the form to send the results to the .txt file eform_results.txt (in your _private folder
> which
> | > has
> | > | > write permissions)
> | > | >
> | > | > - Or use a valid database and ASP for server side processing on a .asp page
> | > | >
> | > | > Explain what you are really attempting to do (since you are mixing actions)
> | > | >
> | > | > --
> | > | >
> | > | > ________________________________________
_____
> | > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> | > | > "Warning - Using the F1 Key will not break anything!" (-;
> | > | > To find the best Newsgroup for FrontPage support see:
> | > | > http://www.net-sites.com/sitebuilder/newsgroups.asp
> | > | > ________________________________________
_____
> | > | >
> | > | >
> | > | > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...
> | > | > | Since I sent this reply I have searched the web for an answer. I have seen
> | > | > | literally hundreds of other pages listed with this same error, mostly html
> | > | > | pages. It seems to be a common problem that so far there is no answer for.
> | > | > |
> | > | > | "kaykayIT" wrote:
> | > | > |
> | > | > | > Thank you David. However, I changed the pages to htm but I get the same
> | > | > | > message except it says: Cannot run the FrontPage Server Extensions on this
> | > | > | > page: "https://www.global-construction.com/secure/Employment1.htm". There
> | > | > | > must be something else wrong. Please help.
> | > | > | >
> | > | > | > "David Berry" wrote:
> | > | > | >
> | > | > | > > You cannot use features that require the FrontPage Server Extensions on an
> | > | > | > > ASP page. Make the page a .HTM page and it will work.
> | > | > | > >
> | > | > | > > --
> | > | > | > > David Berry - MCP
> | > | > | > > Microsoft MVP - FrontPage
> | > | > | > > FrontPage Support: http://www.net-sites.com/sitebuilder/
> | > | > | > > -----------------------------------
> | > | > | > > To assist you in getting the best answers for FrontPage support see:
> | > | > | > > http://www.net-sites.com/sitebuilder/newsgroups.asp
> | > | > | > > -----------------------------------
> | > | > | > > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
> | > | > | > > news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
> | > | > | > > >I used the procedure in the File Upload Whitepaper from Microsoft to create
> | > | > | > > >a
> | > | > | > > > form on a secure subweb in FP 2002. Orginally the web it was on a Windows
> | > | > | > > > 2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with
> | > | > | > > > IIS
> | > | > | > > > 6.0. Since then I have had problems with my forms working. This
> | > | > | > > > particular
> | > | > | > > > form which is equivalent to the "Process1.asp" form in the whitepaper,
> | > | > | > > > gives
> | > | > | > > > me this error "Cannot run the FrontPage Server Extensions on this page".
> | > | > | > > > All
> | > | > | > > > the KB articles talk about using the Feedback form (didn't use this) and
> | > | > | > > > Apache web server (we don't have that). Still cannot find the problem.
> | > | > | > > > Please your help is greatly appreciated. I have been working for days on
> | > | > | > > > this problem.
> | > | > | > >
> | > | > | > >
> | > | > | > >
> | > | >
> | > | >
> | > | >
> | >
> | >
> | >
>
>
>

Stefan B Rusynko

2005-01-06, 7:52 am

Check all your paths
If I run EmployProcess.htm to get Employment1.asp the error is
Data source name not found and no default driver specified
/secure/Employment1.asp, line 10
- implies the txt db _private/eform_results.txt was not found or the schema for it is missing

The folder "secure" is not apparently not a subweb so the path to _private/eform_results.txt should probably be
.../_private/eform_results.txt (in your root web)

Test each form individually to see which one is breaking the chain w/ and w/o the file upload component

________________________________________
_____
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
________________________________________
_____


"kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:D2654D58-3F18-45AC-BEE2-A3E20D02FC3F@microsoft.com...
| Hello Stefan, Thank you for your help. I have checked and rechecked my code
| and did not find anything out of the way. This code worked on Windows 2000
| Server and IIS 5. If it had never worked I can see the code as being the
| problem. But there must have been something that happened between the move
| to the Windows 2003 Server machine. I am still digging for an answer.
|
| "Stefan B Rusynko" wrote:
|
| > Then your ASP code in Employment1.asp is the problem
| >
| > --
| >
| > ________________________________________
_____
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > ________________________________________
_____
| >
| >
| > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:D79C9B12-6AA6-4EF8-A6A5-10B7D38B8CDA@microsoft.com...
| > | Thank you for your help. Yes I changed the permissions on the /Files folder
| > | to what's specified in the white paper. The form results on Employment.htm
| > | is writing to _private/eform_results.txt. It just does not show the form
| > | results in Employment1.asp as it should.
| > |
| > | "Stefan B Rusynko" wrote:
| > |
| > | > And did you redo the permissions for the file upload folder (Files/) according to the same instructions after the move
| > | > Employment.htm sends to _private/eform_results.txt
| > | >
| > | > --
| > | >
| > | > ________________________________________
_____
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > To find the best Newsgroup for FrontPage support see:
| > | > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > ________________________________________
_____
| > | >
| > | >
| > | > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message news:38B88F1F-D5DE-43B2-AE19-07EBB9014383@microsoft.com...
| > | > | Thanks so much for all your responses. The pages are setup exactly as the
| > | > | outlined in this white paper
| > | > | http://support.microsoft.com/defaul...kb;en-us;288328 which shows
| > | > | "How to send form results to a database and an e-mail recipient and use the
| > | > | File Upload component simultaneously". This worked before in IIS 5.0 on a
| > | > | Windows 2000 server. But when we transferred it to Windows 2003 Server does
| > | > | not work anymore. The pages that were created are form page(Employment.htm),
| > | > | a confirmation page(EmployProcess.htm) which redirects to the first .asp
| > | > | page(Employment1.asp). The first asp page is like a confirmation page. By
| > | > | clicking Submit on Employment1.asp, you write the information in the form to
| > | > | the Access database using a custom SQL statement in the second asp
| > | > | page(Employment2.asp).
| > | > |
| > | > | "Stefan B Rusynko" wrote:
| > | > |
| > | > | > You can't use or mix ASP (VBscript) in a Html page
| > | > | > - all your ASP coding is exposed and is not being server side processed
| > | > | >
| > | > | > You appear to be attempting to get data from a database but the "database" connection is just to a text file
| > | > (eform_results.txt),
| > | > | > which probably is in a folder w/o write permissions
| > | > | > - but for what reason is not obvious because you are asking for User input in the form, so you should not be using the
| > | > connection on
| > | > | > that page (or ASP values in your form)
| > | > | >
| > | > | > And you are attempting to send to a html page instead of a ASP page action="Employment2.htm" page
| > | > | > which doesn't exist (but Employment2.asp does exist)
| > | > | >
| > | > | > Either
| > | > | > - Remove all the ASP and just use the form to send the results to the .txt file eform_results.txt (in your _private
folder
| > which
| > | > has
| > | > | > write permissions)
| > | > | >
| > | > | > - Or use a valid database and ASP for server side processing on a .asp page
| > | > | >
| > | > | > Explain what you are really attempting to do (since you are mixing actions)
| > | > | >
| > | > | > --
| > | > | >
| > | > | > ________________________________________
_____
| > | > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > | > To find the best Newsgroup for FrontPage support see:
| > | > | > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > | > ________________________________________
_____
| > | > | >
| > | > | >
| > | > | > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
news:25F2E52E-CE57-4F2F-B1E2-90285F2F32DE@microsoft.com...
| > | > | > | Since I sent this reply I have searched the web for an answer. I have seen
| > | > | > | literally hundreds of other pages listed with this same error, mostly html
| > | > | > | pages. It seems to be a common problem that so far there is no answer for.
| > | > | > |
| > | > | > | "kaykayIT" wrote:
| > | > | > |
| > | > | > | > Thank you David. However, I changed the pages to htm but I get the same
| > | > | > | > message except it says: Cannot run the FrontPage Server Extensions on this
| > | > | > | > page: "https://www.global-construction.com/secure/Employment1.htm". There
| > | > | > | > must be something else wrong. Please help.
| > | > | > | >
| > | > | > | > "David Berry" wrote:
| > | > | > | >
| > | > | > | > > You cannot use features that require the FrontPage Server Extensions on an
| > | > | > | > > ASP page. Make the page a .HTM page and it will work.
| > | > | > | > >
| > | > | > | > > --
| > | > | > | > > David Berry - MCP
| > | > | > | > > Microsoft MVP - FrontPage
| > | > | > | > > FrontPage Support: http://www.net-sites.com/sitebuilder/
| > | > | > | > > -----------------------------------
| > | > | > | > > To assist you in getting the best answers for FrontPage support see:
| > | > | > | > > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > | > | > > -----------------------------------
| > | > | > | > > "kaykayIT" <kaykayIT@discussions.microsoft.com> wrote in message
| > | > | > | > > news:BBC9C497-2491-43CB-8CBB-44D1E085B33F@microsoft.com...
| > | > | > | > > >I used the procedure in the File Upload Whitepaper from Microsoft to create
| > | > | > | > > >a
| > | > | > | > > > form on a secure subweb in FP 2002. Orginally the web it was on a Windows
| > | > | > | > > > 2000 Server with IIS 5.0. We moved the web to a Windows 2003 Server with
| > | > | > | > > > IIS
| > | > | > | > > > 6.0. Since then I have had problems with my forms working. This
| > | > | > | > > > particular
| > | > | > | > > > form which is equivalent to the "Process1.asp" form in the whitepaper,
| > | > | > | > > > gives
| > | > | > | > > > me this error "Cannot run the FrontPage Server Extensions on this page".
| > | > | > | > > > All
| > | > | > | > > > the KB articles talk about using the Feedback form (didn't use this) and
| > | > | > | > > > Apache web server (we don't have that). Still cannot find the problem.
| > | > | > | > > > Please your help is greatly appreciated. I have been working for days on
| > | > | > | > > > this problem.
| > | > | > | > >
| > | > | > | > >
| > | > | > | > >
| > | > | >
| > | > | >
| > | > | >
| > | >
| > | >
| > | >
| >
| >
| >


guy_nethery

2005-01-31, 5:52 pm

Did you ever find a solution to this problem. I have the exact same issue now.

Guy
Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com