I found OpenWiki, a very lightweight and easy-to-install wiki for IIS+ASP. The installation steps, using an MS Access database as the back end, are:
- Download the latest distribution.
- Copy
data\OpenWikiDist.mdb
to some location and rename it to something likeMyWiki.mdb
. - Publish the owbase directory (or a copy thereof) in IIS.
- Edit
owbase\ow.asp
to include the following configuration directives:OPENWIKI_DB = "Driver={Microsoft Access Driver (*.mdb)};DBQ=h:\wherever\MyWiki.mdb"
OPENWIKI_DB_SYNTAX = DB_ACCESS
MSXML_VERSION = 4
OPENWIKI_TITLE = "My Wiki"
OPENWIKI_FRONTPAGE = "FrontPage"
That's it! All of the configuration directives can
be
found in owbase\ow\owconfig_default.asp
.