Hi !
I have made my first site with webmatrix and it works well on a local db. But when I deploy it on a sql server from a web hosting provider it doesn't work. I have this error :
To call this method, the "Membership.Provider" property must be an instance of "ExtendedMembershipProvider".
This is my WebConfig:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"><assemblies><add assembly="System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /></assemblies></compilation>
<httpRuntime executionTimeout="9999" maxRequestLength="20000" />
<customErrors mode="Off" />
<authentication mode=" ...
Go to the complete details ...