Forum Moderators: phranque
I had thought about using a cgi script from Matts scipt archive but it will be a professional site and dont want people to see Matts Script Archive on the 'Thankyou for filling in the form page'.
If any one has any ideas or can point me to a tutorial it would be much appreciated.
Thanks
but if each page is going to be completely done in .asp my success so far in SE's etc has been poor compared to just html.
Hmmm, not sure what you are referring to with the above comment. Are you saying that your asp pages were not performing well in the SERPs? If so, the asp would have nothing to do with it.
Depends on how you do your validation though. The way I do it is to redirect a form submission which fails validation to a dynamic page with the same form but the fields which passed the validation autofilled so the user doesn't have to fill them in again, and for that you need a dynamic page.
I'm sure there'd be a way round that too though.
Launch the IIS Administrator... Properties... Home Directory Tab and choose the configuration button. Map the .htm and .html extensions to the asp.dll which should be in your System32 dir. Limit the verbs to GET,POST & HEAD.
This will allow you to create all of your pages as .htm or .html. Any requests for these pages will get passed into the ASP Scripting Engine for asp code execution. So you can stuff ASP right inside your htm or html pages.
I don't know if this is of any help to you, but as all of my web sites are relatively simple and have no need for ASP etc., I use a CGI mail script from CGIScript.net that allows you to make multiple forms on the fly. It is similar to Matt's CGI forms, but it is much superior in that it has tons of options in it and you can choose your fields and customize them from a menu system. You also have the option of built-in autoresponders as well if you need them. You don't have to handcode it or go into the code and make adjustments. It is all done from a menu system.
It has the usual "generated by CGIScripts.net" on the bottom of the forms, but you can easily go in and erase that line with no problem and customize it for yourself.
Its costs $50 for unlimited use on one domain and is probably no good for the ASP experts, but it works for me and is simple to use.
Maybe it might help someone else too.
HTH