Help with a page

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

http://www.rollingbluethunder.com/Feedback4.asp


This is a page where people can add comments. ALL my other pages are just
like this (or so I think) and they work fine.

This page will not show the results after people put in information.

When I open the DB there is nothing there except the remote computer name.

Anyone have any clue what the problem may be or do I just need to make a new
database and add the infromation from the old one to it?

Thanks
 
Are you using ASP to insert the values into a database? If so, the form
"action" isn't correct. You have:

<form method="POST" action="Feedback4.asp" webbot-action="--WEBBOT-SELF--">

And it should be:

<form method="POST" action="Feedback4.asp">

assuming that FeedBack4.asp has the script to enter the information into the
database.
 
Where do I change this?

David Berry said:
Are you using ASP to insert the values into a database? If so, the form
"action" isn't correct. You have:

<form method="POST" action="Feedback4.asp" webbot-action="--WEBBOT-SELF--">

And it should be:

<form method="POST" action="Feedback4.asp">

assuming that FeedBack4.asp has the script to enter the information into the
database.
 
You can either switch to HTML View to change it or right-click on the form
and change it under Form Properties.
 
Back
Top