Re: Simmulation of form-data posting on one computer? by David
David
Sat May 22 06:49:54 CDT 2004
There is no simulation here. The question is whether you have:
1. Written the HTML FORM to submit the POST to a URL
2. Written the POST acceptor and configured it to execute at the URL
specified in #1
3. Written the code that handles transferring data from the POST to the DB
with the POST acceptor
4. Use a browser to do what you were planning to do.
You only need to configure IIS to be able to execute the URL specified in
#1 -- if it is ASP, enable "Scripts" execute permission, and if ISAPI/CGI,
enable "Scripts and Executables". The rest is usual configuration,
depending on how you do virtual-to-physical mappings.
--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Martin Mrazek" <mrazek@compik.fd.cvut.cz> wrote in message
news:dcd39e84.0405210808.3ce54e94@posting.google.com...
Hi,
I created HTML page with a longer HTML form. It is going to be placed
on our WWW server and posted data will be transfered into DB. I need
to test the whole process (filling data, posting them to www server
and transfering to DB) on my computer. How shall I configure IIS to
receive filled data from the same computer and process them ?
MM