Reputation: 60871
i created an asp.net web app and it works fine with the compiler.
i would like to try it now with IIS server.
i installed the IIS server succesfully on my machine and was wondering if i can have some guidance on redirecting the application to work on it,
how would i get it to work on IIS?
Upvotes: 0
Views: 192
Reputation: 44605
just open IIS configuration manager and create a Virtual Directory that points to the folder where you have the web.config and the bin subfolder.
After that you can do right click on the virtual directory on the left treeview, under My Web Site and click browse to open the site with the default browser.
this in twp sentences, to configure security, application pools and much more you should just google and read a bit of basic IIS doc.
Upvotes: 1