Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Error Adding Nodes To TreeView
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Titre:
Error Adding Nodes To TreeView
Divers
Thread ID:
01451867
Message ID:
01451867
Vues:
127
I'm trying to load a treeview. This code works in WinForms. In ASP I get the compile time error
'System.Xml.Linq.Extensions.Nodes<T>(System.Collections.Generic.IEnumerable<T>)' is a 'method', 
which is not valid in the given context
Here's my code. It's erroring on "nodRoot.Nodes.Add(nodReport)" inside the ELSE.
private void _LoadReportNodes()
{
    string Command = "SELECT * FROM ApexReports ORDER BY ParentId, Sequence";
    DataSet dsTreeNodes = DataLayer.ExecuteQuery(Command);

    string ReportTitle = string.Empty;
    TreeNode nodRoot = null;
    TreeNode nodReport = null;

    foreach (DataRow Row in dsTreeNodes.Tables[0].Rows)
    {
        ReportTitle = Row["ReportTitle"].ToString();

        if (Row["ParentId"] != DBNull.Value)
        {
            nodRoot = new TreeNode(ReportTitle);
            tvwReports.Nodes.Add(nodRoot);
        }
        else
        {
            nodReport = new TreeNode(ReportTitle);
            nodRoot.Nodes.Add(nodReport);
        }
    }
}
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform