Advertisement

02.24.2008 at 11:57PM PST, ID: 23189579
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.8

SPTreeView control in WSS 3.0 (How to?)

Asked by Samuraiken in MOSS-Sharepoint, C# Programming Language, Programming for ASP.NET

Tags: , , ,

Hello All!  I'm trying to create a SPTreeView web part in WSS 3.0 as a means to play around with web parts and understand how to develope them better.  I've searched google for two days and still haven't found anything (beyond some users who are modifying the QuickLaunch menu, which is NOT what i'm attempting to do).

A quick run down of my code, because maybe i'm missing something:
- created a new instance of SPSite using my server's url.
- opened the web via site.OpenWeb();
- created a new SPTreeView instance
- started a foreach conditional to loop through the sites.
- not sure where to go from here?


One of the things that confused me, was that SPTreeView doesn't have an "SPTreeNode" where as ASP.NET 2.0 has TreeView and TreeNode controls...maybe that has something to do with why i've messed it up?

If anyone can post an example of a SPTreeView (or just an ASP.NET 2.0 TreeView) with basic entries in it, it would be extremely appreciated!Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
using System;
using System.Collections.Generic;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using Microsoft.SharePoint;
using Microsoft.SharePoint.WebPartPages;
using Microsoft.SharePoint.WebControls;
using Microsoft.SharePoint.Navigation;
 
// I problably used too many references, but i'm confused on whether to inherit from System.Web or Microsoft.SharePoint m(_v_)m
 
protected override void RenderContents(System.Web.UI.HtmlTextWriter writer)
{
	// Display web, site, and subsite information.
	// Just for m
	SPSite site = new SPSite("http://www.bakakenny.com");
	SPWeb web = site.OpenWeb();	
	SPTreeView tv = new SPTreeView();
 
	foreach (SPWeb siteNodes in web.Webs)
	{
		// This is where i'm not sure what to do...
		// I'd like to add the title of the site, and
		// when clicked it goes to that site...
		// sort of like a "name" and
		// a "url" value for each entry.
 
		tv.Nodes.Add(siteNodes.Title);
	}
}
[+][-]02.25.2008 at 07:46AM PST, ID: 20976414

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.25.2008 at 11:47AM PST, ID: 20978571

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.25.2008 at 02:00PM PST, ID: 20979693

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.25.2008 at 08:20PM PST, ID: 20981576

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.25.2008 at 10:28PM PST, ID: 20982037

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.04.2008 at 03:55PM PST, ID: 21046512

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.04.2008 at 06:14PM PST, ID: 21047194

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: MOSS-Sharepoint, C# Programming Language, Programming for ASP.NET
Tags: Microsoft, Windows Sharepoint Services, 3.0, C#
Sign Up Now!
Solution Provided By: liebrand
Participating Experts: 1
Solution Grade: A
 
 
[+][-]09.06.2008 at 02:03PM PDT, ID: 22408986

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 08:48PM PDT, ID: 22446103

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-44 / EE_QW_2_20070628