ASP.NET is very different from classical ASP.
While ASP support needs ActiveHTML from Selisoft (which is not free), ASP.NET support in the new version of Abyss Web Server does not need any external add-on and comes at no charge: we've done the necessary to write our "bridge" from Abyss Web Server to .NET to get this working (and that's why version 2.3 took so long to be released).
All you need is to have .NET Framework 1.1 or higher correctly set up in Windows and Abyss Web Server X1/X2 version 2.3 or higher.
Open Console > Host - Configure > ASP.NET Parameters. If you receive a message informing you that you do not have a supported .NET Framework, follow the displayed link to install it (it's usually a 25-30 MB download - free). Otherwise you can start immediately using ASP.NET applications without any additional setup.
Below is an example explaining how to setup a sample ASP.NET application in Abyss Web Server:
* Download World Recipe from
http://www.ex-designz.net/dl_goto.asp?id=821 .
* Unzip the file inside a directory called wr (for example) inside htdocs/
* In the wr/ subdirectory, open config.aspx, config2.aspx, and inc_databasepath.aspx with any text editor (Notepad should suffice).
* Replace in these files all the occurences of /db/recipedb.mdb with /wr/db/recipedb.mdb (or the actual virtual path of your recipedb.mdb file). World Recipe has been designed to work from the root of your host, so if you install it in a subdirectory these changes are mandatory (this is by the way listed as a required installation step in Installation.doc).
* Save the updated files.
* Open Console > Host > Configure > ASP.NET Parameters and press Add... in the table.
* Enter /wr in the Virtual path field and select 1.1 in the .NET Version list.
* Press OK twice and then press Restart
* Now browse
http://yoursite/wr/index.aspx to start using the just installed ASP.NET application (and enjoy :-) ).
You can find a lot if information about this technology in
http://www.asp.net or on Microsoft Web Site. There is also a great tutorial for ASP.NET beginners in
http://samples.gotdotnet.com/quickstart/aspplus/doc/default.aspx .