Enabling Web Part personalization without user registration

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Anonieko

    Enabling Web Part personalization without user registration

    Scenario:

    Web Parts features (like design mode) require the user to be
    authenticated and registered.

    But what if you don't want the users to go through registration but
    still enable personalization ?

    Answers:

    Alternative 1:
    Use Windows Authentication (good for intranet)
    Modify Web.config to have

    <system.web>
    ...
    <authenticati on mode="Windows"/
    ...
    </system.web>

    In IIS virtual directory, right click properties--> disable
    "Anonymous" access and enable Windows Authentication


    Alternative 2:
    Use anonymous personalization trick:




    -----------
    Note: Sample error message when you are using wrongly the web parts
    is:

    "The specified display mode is currently disabled on this page. Make
    sure personalization is enabled for the current user."

Working...