![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| ||||
| ||||
|
|
personalization, which are shared and personal, so I can create a 'shared' layout and then let users (with the right security) personalize the website I built for them. BLOG web part. At this point, I think we are talking about a "Shared" scope because it was already built for any new person that wants their own personal area on your website. |
|
Next, anonymous users visit my site... what do they see? The Shared scope page or the one that the MySite user created for their personal home page? |
|
Take this one step further... let's say I am an anonymous user and want to modify one of the user's pages to just show what I want to see... I'm not modifying that user's page, just personalizing it for me. |
|
Does the .NET framework provide for all these layers of personalization (out-of-box, many tailored views by people that can modify their information for the world to see and then tailored views just for an individual viewer to modify)? |
#3
| |||
| |||
|
|
Does the .NET framework provide for all these layers of personalization (out-of-box, many tailored views by people that can modify their information for the world to see and then tailored views just for an individual viewer to modify)? No. A page has only four views -- Initial view (as defined in aspx), Anonymous-User view (initially as defined in aspx, can be updated with appropriate permissions), Individual-User view (User-Scope personalization) and Logged-In-Users-Common-View (Shared-Scope personalization). |
|
Hi Bill, Please see my comments inline. personalization, which are shared and personal, so I can create a 'shared' layout and then let users (with the right security) personalize the website I built for them. BLOG web part. At this point, I think we are talking about a "Shared" scope because it was already built for any new person that wants their own personal area on your website. 'Shared' scope means that if one user changes the value, it would be reflected across the system. It is application-based rather then user-based. If you wish to have some settings such that "new person" "wants their own personal area", it would be in 'User' scope. Next, anonymous users visit my site... what do they see? The Shared scope page or the one that the MySite user created for their personal home page? Anonymous users see the default data -- the initial data as defined in the aspx page without any customizations. Note that there is a difference between 'Anonymous User' and 'Shared Scope'. By default, anonymous users do not have any rights to the personalization -- ie, they see the page as defined in the aspx and they cannot make any changes. Shared and User Scopes are valid once the user is logged in. Any item in shared scope means that if user X updates it, it would be reflected in user Y's page as well. Any item in use scope means that users X and Y have their own settings for the item. Take this one step further... let's say I am an anonymous user and want to modify one of the user's pages to just show what I want to see... I'm not modifying that user's page, just personalizing it for me. Anonymous user has no rights. Does the .NET framework provide for all these layers of personalization (out-of-box, many tailored views by people that can modify their information for the world to see and then tailored views just for an individual viewer to modify)? No. A page has only four views -- Initial view (as defined in aspx), Anonymous-User view (initially as defined in aspx, can be updated with appropriate permissions), Individual-User view (User-Scope personalization) and Logged-In-Users-Common-View (Shared-Scope personalization). Hope it makes things clearer... -- Happy Hacking, Gaurav Vaish | http://www.mastergaurav.org http://www.edujini.in | http://webservices.edujini.in ------------------- |
#4
| |||
| |||
|
|
No. A page has only four views -- Initial view (as defined in aspx), Anonymous-User view (initially as defined in aspx, can be updated with appropriate permissions), Individual-User view (User-Scope personalization) and Logged-In-Users-Common-View (Shared-Scope personalization). |
|
Hi Vaish, |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |