![]() |
|
|
Testing the ASP.NET Installation, and what version?If there's a version of the .NET Framework present (check if the .NET Framework is installed) then we can move on to the next step of testing the script below to make sure that everything is functioning correctly. IIS on installation creates a folder called ‘Inetpub’ on your hard drive, under Inetpub there is another folder called ‘wwwroot’. The wwwroot folder is the root folder for your website. By default the folders are placed on your C drive, C:\Inetpub\wwwroot. You can copy the code below into a new file called 'test.aspx' and place in the wwwroot folder. <%@ Page Language="VB" %> <script runat="server"> <html> Open your browser and type in 'http://www.localhost/test.aspx'. If it runs and works then everything's fine and the version is written to the browser programmatically! If IIS isn't installed read our IIS installation page and for further reading check out this article on 'options for a web server', if the .NET framework isn't installed then read our article http://www.codefixer.com/asp_net/asp_net_installation.asp.
Site developed by Michael Wall - Web Design Belfast N.Ireland. |
|