Hi,
DrZ3D: at Step 6: Creating the Custom Site Map Provider i dont find from where read the ProductsBLL() and Northwind.ProductsDataTable
I would suggest that you should read where you left off.
see these code lines:
Dim productsAPI As New ProductsBLL()
Dim products As Northwind.ProductsDataTable = productsAPI.GetProducts()
' Create the root SiteMapNode
root = New SiteMapNode(Me, "root", "~/SiteMapProvider/Default.aspx", "All Categories")
AddNode(root)
' Create SiteMapNodes for the categories and products
For Each product As Northwind.ProductsRow In products
ProductsBLL() is a class that is in the App_Code folder, productsAPI.GetProducts() is a method of the ProductsBLL(), which returns the data of the product table.
Northwind is a dataset of the application, which is in the DAL folder of the root directory.
The line of the For Each product As Northwind.ProductsRow In products is used to read the read the ProductsBLL() and Northwind.ProductsDataTable.
Hope it helps.
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Yours sincerely,
Amanda Wang
Microsoft Online Community Support