anybody know how to create live.com add page control in asp.net -

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've been trying to figure out how to give end users a the ability to add
pages and name them - so they can organize their own portal as in yahoo.com
or live.com. I want to include it on a master page as well. Have tried many
combinations of controls with no success yet. Anyone know how to get this
done?

Any input is much appreciated - thanks!
Andrew
 
In ASP.NET 2.0, lots of Webparts controls are added that enable end users
to modify the content, appearance, and behavior of Web pages directly in a
browser. You may take a look at this article about this:

http://msdn2.microsoft.com/en-us/library/e0s9t4ck.aspx

Hope this help,

Luke Zhang
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
Hi Luke,

Yes - I realize this and am using web parts extensively in this project.
Have done the walkthroughs and created many test projects using them.

The problem is in creating a control which will allow end users to have the
same functionality as the "add page" control on live.com - that is, a control
which will

- allow users to add a rename-able hyperlink to an existing page
- show / hide these links at will

Thanks,
Andrew
 
As I know, there is no such a component or web control in ASP.NET providing
the functions. You may need to implement them by yourself. For example,
code for client scripts to support manage user operations on links. Anyway,
you may take a look at "ATLAS" to see if it can help on this:

http://atlas.asp.net/Default.aspx?tabid=47

Regards,

Luke Zhang
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
Back
Top