Click to See Complete Forum and Search --> : Content manager in VS 2010 (or VS 2008)


patudzu
04-23-2010, 01:00 PM
I need to make a website in VS 2010 and I need to manage content with levels and sublevels for each section.

Example:

Section "About us"

1. ......
1.1 .......
1.1.1 .........
1.1.2 .........
1.2 .........

2 ..........
2.1.........

3 .........
and so on.

Is there any solution for this problem? I dont need html since I will use textareas to control everything through css on the webpage.

Thanks in advance,
Francisco

Gozzy82
04-28-2010, 09:29 AM
i hate to be the bearer of bad news but if your using a webpage your using html....

(nested) ordered lists seem like a good candidate


<ol>
<li>bla</li>
<li>bla <ol><li>bla nested</li></ol></li>
</ol>

patudzu
04-28-2010, 09:42 AM
Well, that's nice for presentation. I love ULs and LIs. But what about management?

I would love to have something really fast to use with Ajax/Jquery/Silverlight and "Edit in place" feature.

There should be something similar on internet...