| B2B Forward
Auction Creator
|
|
Install
pws and IIS |
Webserver is required to execute the
asp program.
Please install PWS for windows 98 system
and install IIS for windows NT system.
PWS is available in windows98 second
Edition [Add-on] folder.
after installed PWS, place ASP scripts in the webserver root
directory(default "C:\Inetpub\WWWroot")
and type in "Http://Localhost/b2bforwardauction/auction/default.asp" to run
asp
|
|
| How to specify database
path?
|
| Example:
If your PWS or IIS webserver
root directory is "C:\Inetpub\WWWRoot" and your database
file located at "C:\Inetpub\WWWRoot\b2bforwardauction\b2bforwardauction.mdb"
************************************************************************************************
fpath="DBQ="&Server.MapPath("/b2bforwardauction/b2bforwardauction.mdb")
************************************************************************************************
*Note
Server.mappath will bring your program to your server Root directory.
|
|
Microsoft OLE DB Provider
for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access
Driver]General error Unable to open registry key 'Temporary (volatile) Jet
DSN for process 0x418 Thread 0x798 DBC 0xedb0fcc Jet'.
|
| Solution:
The database path specified in
Opendatabase.asp is incorrect. Program cannot find the database
file.
************************************************************************************************
fpath="DBQ="&Server.MapPath("/B2BForwardAuction/B2BForwardAuction.mdb")
************************************************************************************************
Check the database path in Opendatabase.asp and database file
location. Make sure the database path is correctly specified.
|
|
Microsoft OLE DB Provider
for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Could not find file '(unknown)'.
|
| Solution:
The database path specified in
Opendatabase.asp is incorrect. Program cannot find the database
file.
************************************************************************************************
fpath="DBQ="&Server.MapPath("/B2BForwardAuction/B2BForwardAuction.mdb")
************************************************************************************************
Check the database path in Opendatabase.asp and database file
location. Make sure the database path is correctly specified.
|
|
"Run time error '3706'
ADO could not find the specified provider."
|
| Solution:
ODBC Driver corrupted or MDAC version
incorrect.
Download and install later MDAC Version to solve this problem.
Download MDAC:
http://www.microsoft.com/data/whatcom.htm
http://www.microsoft.com/data/download.htm
|
|
| Unspecified Error
|
Solution:
- Open opendatabase.asp with Text
Editor e.g. Notepad
- Change the database path:
********************************************************************************************
fpath="DBQ="&Server.MapPath("/B2BForwardAuction/B2BForwardAuction.mdb")
********************************************************************************************
To:
********************************************************************************************
fpath="DB="&Server.MapPath("/B2BForwardAuction/B2BForwardAuction.mdb")
********************************************************************************************
- run the asp program and browser display
a different error message.
- change the database path in
opendatabase.asp to original database path:
- Change the database path:
********************************************************************************************
fpath="DB="&Server.MapPath("/B2BForwardAuction/B2BForwardAuction.mdb")
********************************************************************************************
To:
********************************************************************************************
fpath="DBQ="&Server.MapPath("/B2BForwardAuction/B2BForwardAuction.mdb")
********************************************************************************************
- Run the asp program again and the
unspecified error shall be solved.
|