Is this possible to be done in ASP.net - advice

Apr 3 2006 7:46 AM
Hello, I have to make a treeview dinamically taking the source from the database. So I made that but I would like to make the nodes to follow the urls - the treeview should be a kind of a sitemap too because the same database is used to fill gridview controls that are related one after another. For example may databes in short is like:
TABLE "MainProd" (
"MainProdID" "int" --> this is PriKey
"MnName" nvarchar (40) NOT NULL ,....
..........
"Info" nvarchar (40) ...,
)

*-->"MainProd" (1 to infinity) "1MainProd"

Table "1MainProd"(
1MainProdID --> PriKey
1MainProdName
........
MainProdID ---> ForKey
)

*-->"1MainProd" (1 to infinity) "2MainProd"

Table "2MainProd"(
2MainProdID --> PriKey
2MainProdName
........
1MainProdID ---> ForKey
)

So is their any "trick" that I can make the nodes to follow a navigation url like:
"theNameOfTheNode.aspx".
I'll really appreciate any help or advice.
Thank You!