This program is modified from BBSGood 5.0
Migrate the original ASP syntax to ASP.NET and encapsulate it into a DLL
ASP.NET has faster execution efficiency and higher concurrent access than ASP. DLL based on ASP.NET can run on a virtual host that supports ASP.NET. There is no need to register the DLL, and there is no need to restart IIS to update the DLL.
This program uses the HttpHandlers mechanism of the Web.Config file and does not require clear text ASPX files.
The VBSource directory is the source code of the ASP.NET program and does not need to be uploaded to the Web server.
The WebFolder directory is a virtual directory uploaded to the Web server. There is no source code, only DLL and other image resources. You can use VS.NET 2008 to open the project, modify the source code and regenerate the DLL.
Modifying the content requires installing the Visual Studio.NET 2008 development environment, and activating the ASP.NET 2.0 service on the running server.
Operation steps:
1. Upload the WebFolder directory to the Web server
2. Point the website root directory to the WebFolder directory
3. Open the browser and enter http://servername/Index.aspx in the address (note: it is Index.aspx, not Index.asp)
Expand