User791773689 posted
Hello everybody,
I begin with Webparts, as SQL Server 2005 databases cannot be opened on Windows 10 I have to implement a new PersonalizationProvider.
In web.config I declare it like that :
<webParts>
<personalization defaultProvider="perso">
<providers>
<clear />
<add name="perso"
applicationName="WebApplication2"
type="WebApplication2.Sql2014PersonalizationProvider"
connectionStringName="AuthConnectionString" />
</providers>
</personalization>
</webParts>
The WebpartManager could not be displayed without this registration. Once this is in the web.config the page with the WebpartManager is displayed.
Now, if I add a CatalogZone, with a PageCatalogPart in it, I am said that my PersonalizationProvider is not registered.
Well, a second registration ?
Or is my registration not so correct as that ?
Sql2014PersonalizationProvider begins with "namespace WebApplication2".