Click here to Skip to main content
15,889,838 members
Articles / Web Development / ASP.NET
Tip/Trick

Visual Studio 2013 Use HTTPS (SSL) On Web Application Projects

Rate me:
Please Sign up or sign in to vote.
4.75/5 (6 votes)
30 Apr 2014CPOL 70.9K   11   3
This tip teaches you how to enable HTTPS (SSL) on Visual Studio 2013 Web Projects

Introduction

Sometimes (increasingly), we need to develop and deploy a secure web site that uses https protocol.

Within the new version of Visual Studio (2013), we now can easily create, develop and test our web application on https.

How To

To enable the secure https protocol within our web projects, just follow these steps.

Once you have created your project, go in the properties window and search the setting property "SSL Enabled" by default is set to False.

Image 1

Set the "SSL Enabled" property to True.

Image 2

Once you change the value, Visual Studio set in automatic the SSL URL, e.g., https://localhost:44301/.

At this point, we can go in the advanced properties of the project (Alt + Enter), select the Web tab and set the Project URL with the same value of SSL URL, e.g., https://localhost:44301/.

Image 3 Once you have configured the default URL of the web application, we can run the site (F5 or CTRL + F5).

The first time you set the secure protocol on IIS Express, you will be prompted to install the certificate for SSL.

Image 4

After installation, now you can browse our application using the https protocol!

Image 5

I hope you enjoy.

Happy coding! ;)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Italy Italy
I am an Italian developer specialized on ASP.NET web applications.
I consider myself a lucky person because my work coincides with my passion: Develop code!
I began to develop code from the age of about ten years with the infamous Commodore 64.
My turning point was the advent of the internet since 1995 and I started to develop websites first static and then dynamic (ASP) before moving to. NET platform since then ... I do not have more 'stopped!

Comments and Discussions

 
QuestionDoest work Pin
Member 1146949921-Feb-15 10:01
Member 1146949921-Feb-15 10:01 
QuestionAvailable in Visual Studio 2012 as well. Pin
Dev Enthusiast1-May-14 12:22
Dev Enthusiast1-May-14 12:22 
AnswerRe: Available in Visual Studio 2012 as well. Pin
congiuluc4-May-14 6:05
congiuluc4-May-14 6:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.