HighTechTalks DotNet Forums  

Personalization Scope?

ASP.net Building Controls microsoft.public.dotnet.framework.aspnet.buildingcontrols


Discuss Personalization Scope? in the ASP.net Building Controls forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
William Raymond [MS Project MVP]
 
Posts: n/a

Default Personalization Scope? - 08-08-2006 , 03:27 PM






Hi All,

I am not a programmer, but learning ASP.NET 2.0 to understand the
capabilities and potential limitations for my customers. This is my
disclaimer in case my terminology does not match up with what you would
expect me to be using :-)

From what I can tell, you can Personalize ASP.NET web parts, page themes,
internationalization, etc. It also looks like there are two 'scopes' of
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.

Assuming this is correct, here is the actual question:

Imagine you are building a website that allows people to post interesting
information about themselves. Assuming no SharePoint, as a web developer,
you would probably create a web page called "MySite.aspx". Maybe you give
the user a pre-defined look for the website with an Image web part and a
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.

The "MySite.aspx" could have any number of users that create their own
personal sites with their own BLOG and image library. Now, that user can
personalize the site based on privileges given to them such as the ability
to add/move/change web parts and tailor the overall look of their page
(themes, language, etc.)

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)?

If so, could you point me in the right direction to read about this? If
not, are there custom solutions in the marketplace that address this?

Thanks much and sorry about the long post.

-Bill

--
Bill Raymond
MS Project MVP
hotmail: projectnation



Reply With Quote
  #2  
Old   
Gaurav Vaish \(www.EduJini.IN\)
 
Posts: n/a

Default Re: Personalization Scope? - 08-10-2006 , 12:29 AM






Hi Bill,

Please see my comments inline.

Quote:
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.

Quote:
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.

Quote:
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.

Quote:
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
-------------------






Reply With Quote
  #3  
Old   
William Raymond [MS Project MVP]
 
Posts: n/a

Default Re: Personalization Scope? - 08-14-2006 , 02:03 PM



Hi Vaish,

This was very helpful, thank you. Could you help me clarify the comments
you made to the last item (I pasted the paragraph and your response below)?

Basically, I want that 'extra' layer whereby you have the default ASPX view
but then let someone modify it via IE/web parts to have it's own look and
feel for others to see. That would be something like a personal 'my site'
for everyone to see. Then, users accessing this site could modify it via
IE/web parts for their own purposes.

This is sort of the equivelent of creating multiple SharePoint sites for
each user, but I just have one ASPX page that uses unique id's to show this
person's personal website.

If not available via the .NET framework, are their add-ons or special things
one can do to accomplish this?

Thanks,

-Bill (pasted text below)

Quote:
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).



--
Bill Raymond
MS Project MVP
hotmail: projectnation


"Gaurav Vaish (www.EduJini.IN)" <gaurav.vaish.nospam (AT) nospam (DOT) gmail.com> wrote
in message news:%23IxE8RFvGHA.4456 (AT) TK2MSFTNGP06 (DOT) phx.gbl...
Quote:
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
-------------------







Reply With Quote
  #4  
Old   
Gaurav Vaish \(www.EduJini.IN\)
 
Posts: n/a

Default Re: Personalization Scope? - 08-21-2006 , 10:52 AM



Hi William,

You can call me Gaurav... ;-)

What you are looking for is probably, exactly the webparts.

Regarding my last paragraph:

Quote:
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).

There is just one aspx page. It may have multiple WebPartZone's. In each
Zone, you can initially specially what needs to put. Then, you can take the
user into the 'Design' mode of the webparts-based page. He can then
drag-n-drop the components (in IE or choose the zone of each component in
other browsers) to whatever zone he wants to.

The components can be either custom WebParts (sub-classes of WebPart
control) or any other server-side control that would be encapsulated within
GenericWebPart control.


--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.org
http://www.edujini.in | http://webservices.edujini.in
-------------------


"William Raymond [MS Project MVP]" <na (AT) na (DOT) com> wrote

Quote:
Hi Vaish,



Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.