Click here to Skip to main content
15,884,473 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i want to create a https://anywebsite.com by using asp.net with c#, using visual studio 2010, is it possible, if yes then how.(Suggest any simple way).
Posted

1 solution

You can develop your site normally.

In the web.config you must add this in your forms section:
XML
<authentication mode="Forms">
      <forms name=".APP_ASPXAUTH" loginurl="Login.aspx" defaulturl="Default.aspx" ticketcompatibilitymode="Framework40" protection="All" requiressl="true" />
</authentication>


Hope it answers your question.
 
Share this answer
 
v2
Comments
Volynsky Alex 8-Aug-12 17:49pm    
The best way to read what some book
For example:
http://www.scribd.com/doc/24730138/Step-by-Step-ASP-Net-Tutorial
footballpardeep 9-Aug-12 7:04am    
Thanks for reply, but don't happen anything after adding this code :(
Christian Amado 9-Aug-12 7:55am    
The code above enables the use of ssl (https protocol).

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900