Error message: 500.100

J

Jim F

My son is helping me with the extra coding needed to make
a form function properly. The problem is that he is
using FP 2003 and Windows Server 2003 to make his changes
while I am still using FP2002 with XP-Pro, with IIS 5.1.
Does FP2003 change the page in some way that FP2002
cannot process?

The web is at
http://www.lonestarrotarypets.org/2005/peregform.asp

The form, for the most part, seems to work OK on the
webserver, but when I publish his changed pages back to
the server on my computer the form will not open in IE or
Netscape, and I get the 500.100 error message indication
that the server has timed out. I am pretty sure that the
timeout is not the problem, and that there is something
else causing this.


You are welcome to run the form or look at the code
behind it. Can anyone tell me what I can do to debug
this? Is there a program that I can run to check for
errors in the code.
 
S

Stefan B Rusynko

500 is a permissions related error and the actual server side ASP code to process the form (PERegForm.asp) is not visible to anyone
(only your client side JavaScript is visible)
- what are you doing w/ form data in the VBscript (ASP) code

--




| My son is helping me with the extra coding needed to make
| a form function properly. The problem is that he is
| using FP 2003 and Windows Server 2003 to make his changes
| while I am still using FP2002 with XP-Pro, with IIS 5.1.
| Does FP2003 change the page in some way that FP2002
| cannot process?
|
| The web is at
| http://www.lonestarrotarypets.org/2005/peregform.asp
|
| The form, for the most part, seems to work OK on the
| webserver, but when I publish his changed pages back to
| the server on my computer the form will not open in IE or
| Netscape, and I get the 500.100 error message indication
| that the server has timed out. I am pretty sure that the
| timeout is not the problem, and that there is something
| else causing this.
|
|
| You are welcome to run the form or look at the code
| behind it. Can anyone tell me what I can do to debug
| this? Is there a program that I can run to check for
| errors in the code.
|
 
G

Guest

Stephan:
I sent you copy of the form via your e-mail address
-----Original Message-----
500 is a permissions related error and the actual server
side ASP code to process the form (PERegForm.asp) is not
visible to anyone
(only your client side JavaScript is visible)
- what are you doing w/ form data in the VBscript (ASP) code

--

_____________________________________________
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
_____________________________________________


"Jim F" <[email protected]> wrote in
message news:[email protected]...
 
S

Stefan B Rusynko

The broken form PERegForm-Error.asp has an action to PERegForm_copy(2).asp, not PERegForm-Error.asp

<form method="POST" action="PERegForm_copy(2).asp" language="JavaScript" name="FrontPage_Form1" onsubmit="return
FrontPage_Form1_Validator(this)" webbot-action="--WEBBOT-SELF--">

Where the working form PERegFormGood.asp has an action to PERegFormGood.asp

<form method="POST" action="PERegFormGood.asp" language="JavaScript" name="FrontPage_Form1" onsubmit="return
FrontPage_Form1_Validator(this)" webbot-action="--WEBBOT-SELF--">

--




| Stephan:
| I sent you copy of the form via your e-mail address
|
| >-----Original Message-----
| >500 is a permissions related error and the actual server
| side ASP code to process the form (PERegForm.asp) is not
| visible to anyone
| >(only your client side JavaScript is visible)
| >- what are you doing w/ form data in the VBscript (ASP)
| code
| >
| >--
| >
| >_____________________________________________
| >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
| >_____________________________________________
| >
| >
| message | >| My son is helping me with the extra coding needed to
| make
| >| a form function properly. The problem is that he is
| >| using FP 2003 and Windows Server 2003 to make his
| changes
| >| while I am still using FP2002 with XP-Pro, with IIS
| 5.1.
| >| Does FP2003 change the page in some way that FP2002
| >| cannot process?
| >|
| >| The web is at
| >| http://www.lonestarrotarypets.org/2005/peregform.asp
| >|
| >| The form, for the most part, seems to work OK on the
| >| webserver, but when I publish his changed pages back to
| >| the server on my computer the form will not open in IE
| or
| >| Netscape, and I get the 500.100 error message
| indication
| >| that the server has timed out. I am pretty sure that
| the
| >| timeout is not the problem, and that there is something
| >| else causing this.
| >|
| >|
| >| You are welcome to run the form or look at the code
| >| behind it. Can anyone tell me what I can do to debug
| >| this? Is there a program that I can run to check for
| >| errors in the code.
| >|
| >
| >
| >.
| >
 
J

Jim F

I am not able to find the reference to the incorrect
file. All I am able to find in the HTML is:

<form method="POST" action="--WEBBOT-SELF--"
language="JavaScript" name="FrontPage_Form1"
onsubmit="return FrontPage_Form1_Validator(this)">


Where do I find the page name reference?

I renamed the file just before I sent it to you, and i
may have done that in Windows Explorer instead of FP, so
that may account for the incorrect reference. If it will
help just rename it back to PERegForm_copy(2).asp

Sorry for the mixup, and thanks again for your help.

-----Original Message-----
The broken form PERegForm-Error.asp has an action to
PERegForm_copy(2).asp, not PERegForm-Error.asp
<form method="POST" action="PERegForm_copy(2).asp"
language="JavaScript" name="FrontPage_Form1"
onsubmit="return
FrontPage_Form1_Validator(this)" webbot-action="--WEBBOT- SELF--">

Where the working form PERegFormGood.asp has an action to PERegFormGood.asp

<form method="POST" action="PERegFormGood.asp"
language="JavaScript" name="FrontPage_Form1"
onsubmit="return
FrontPage_Form1_Validator(this)" webbot-action="--WEBBOT- SELF--">

--

_____________________________________________
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
_____________________________________________


| Stephan:
| I sent you copy of the form via your e-mail address
|
| >-----Original Message-----
| >500 is a permissions related error and the actual server
| side ASP code to process the form (PERegForm.asp) is not
| visible to anyone
| >(only your client side JavaScript is visible)
| >- what are you doing w/ form data in the VBscript (ASP)
| code
| >
| >--
| >
| >_____________________________________________
| >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
| >_____________________________________________
| >
| >
| message | >| My son is helping me with the extra coding needed to
| make
| >| a form function properly. The problem is that he is
| >| using FP 2003 and Windows Server 2003 to make his
| changes
| >| while I am still using FP2002 with XP-Pro, with IIS
| 5.1.
| >| Does FP2003 change the page in some way that FP2002
| >| cannot process?
| >|
| >| The web is at
| >| http://www.lonestarrotarypets.org/2005/peregform.asp
| >|
| >| The form, for the most part, seems to work OK on the
| >| webserver, but when I publish his changed pages back to
| >| the server on my computer the form will not open in IE
| or
| >| Netscape, and I get the 500.100 error message
| indication
| >| that the server has timed out. I am pretty sure that
| the
| >| timeout is not the problem, and that there is something
| >| else causing this.
| >|
| >|
| >| You are welcome to run the form or look at the code
| >| behind it. Can anyone tell me what I can do to debug
| >| this? Is there a program that I can run to check for
| >| errors in the code.
| >|
| >
| >
| >.
| >


.
 
S

Stefan B Rusynko

Right click the form for form properties to set the action
- do not edit FP pages or forms outside of FP

--




| I am not able to find the reference to the incorrect
| file. All I am able to find in the HTML is:
|
| <form method="POST" action="--WEBBOT-SELF--"
| language="JavaScript" name="FrontPage_Form1"
| onsubmit="return FrontPage_Form1_Validator(this)">
|
|
| Where do I find the page name reference?
|
| I renamed the file just before I sent it to you, and i
| may have done that in Windows Explorer instead of FP, so
| that may account for the incorrect reference. If it will
| help just rename it back to PERegForm_copy(2).asp
|
| Sorry for the mixup, and thanks again for your help.
|
|
| >-----Original Message-----
| >The broken form PERegForm-Error.asp has an action to
| PERegForm_copy(2).asp, not PERegForm-Error.asp
| >
| ><form method="POST" action="PERegForm_copy(2).asp"
| language="JavaScript" name="FrontPage_Form1"
| onsubmit="return
| >FrontPage_Form1_Validator(this)" webbot-action="--WEBBOT-
| SELF--">
| >
| >Where the working form PERegFormGood.asp has an action
| to PERegFormGood.asp
| >
| ><form method="POST" action="PERegFormGood.asp"
| language="JavaScript" name="FrontPage_Form1"
| onsubmit="return
| >FrontPage_Form1_Validator(this)" webbot-action="--WEBBOT-
| SELF--">
| >
| >--
| >
| >_____________________________________________
| >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
| >_____________________________________________
| >
| >
| | >| Stephan:
| >| I sent you copy of the form via your e-mail address
| >|
| >| >-----Original Message-----
| >| >500 is a permissions related error and the actual
| server
| >| side ASP code to process the form (PERegForm.asp) is
| not
| >| visible to anyone
| >| >(only your client side JavaScript is visible)
| >| >- what are you doing w/ form data in the VBscript
| (ASP)
| >| code
| >| >
| >| >--
| >| >
| >| >_____________________________________________
| >| >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
| >| >_____________________________________________
| >| >
| >| >
| >| message | >| >| My son is helping me with the extra coding needed to
| >| make
| >| >| a form function properly. The problem is that he is
| >| >| using FP 2003 and Windows Server 2003 to make his
| >| changes
| >| >| while I am still using FP2002 with XP-Pro, with IIS
| >| 5.1.
| >| >| Does FP2003 change the page in some way that FP2002
| >| >| cannot process?
| >| >|
| >| >| The web is at
| >| >| http://www.lonestarrotarypets.org/2005/peregform.asp
| >| >|
| >| >| The form, for the most part, seems to work OK on the
| >| >| webserver, but when I publish his changed pages
| back to
| >| >| the server on my computer the form will not open in
| IE
| >| or
| >| >| Netscape, and I get the 500.100 error message
| >| indication
| >| >| that the server has timed out. I am pretty sure that
| >| the
| >| >| timeout is not the problem, and that there is
| something
| >| >| else causing this.
| >| >|
| >| >|
| >| >| You are welcome to run the form or look at the code
| >| >| behind it. Can anyone tell me what I can do to debug
| >| >| this? Is there a program that I can run to check
| for
| >| >| errors in the code.
| >| >|
| >| >
| >| >
| >| >.
| >| >
| >
| >
| >.
| >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top