Posts

Showing posts from July, 2014

How to install asp.net4.5 in windows Server

Type the following command in cmd promt: dism /online /enable-feature /featurename:IIS-ASPNET45 /all

HOW TO configure HTTPS for a website in IIS7

Copied from: http://blogs.msdn.com/b/rakkimk/archive/2007/05/25/iis-7-how-to-configure-a-website-for-https.aspx The UI of the IIS manager in IIS 7 is completely different from that of IIS 6. Initially it will look as if you are going to use a brand new product which you are trying for the first time. But, if you are used to it, you will definitely appreciate the simplicity and easiness of configurations using IIS 7 manager. To setup a website for HTTPS, you will definitely need the following things (apart from some general network stuffs like opening the port, firewall rule, etc): 1.       Web Server Certificate 2.       SSL Port Getting a Web Server Certificate To get a web server certificate, in IIS 6 manager, you will go into website’s properties   à Directory Security and you will bring the Server Certificate wizard by clicking on the Server Certificate button under Secure communications. But, here in IIS 7, you can select t...