Back again with another question for your learned ones. I am having trouble implementing a profile system for my project. I have successfully implemented authentication, roles and membership, however when I try to use profiles, as demonstrated by this
guide, and other tutorials out there, such as the one
here, it simply does not work. Here is my web.config:
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="SqlServices" connectionString="Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\George\Documen ...
Go to the complete details ...