|
|
|
start date: Fri, 17 Aug 2007 10:14:00 -0700,
posted on: microsoft.public.dotnet.framework.aspnet
back
| Thread Index |
|
1
WebBuilder451
|
|
2
Mark Rae [MVP]
|
|
3
WebBuilder451
|
SqlSiteMapProvider question for menu control
I need to translate thi control into vb.net code and i'm having a little
trouble.
(by the way, i love the example)
Specificly I'm not sure how to translate this statement:
// Create a dictionary for temporary node storage and lookup
Dictionary<int, SiteMapNode> nodes = new Dictionary<int, SiteMapNode> (16);
peter, you answered my last question i suppose i'm asking a favor now,
thanks for the code...
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
Date:Fri, 17 Aug 2007 10:14:00 -0700
Author:
|
Re: SqlSiteMapProvider question for menu control
"WebBuilder451" wrote in message
news:7D6A2BEA-2EC9-4C11-A1E8-7E179097F6BE@microsoft.com...
>I need to translate thi control into vb.net code and i'm having a little
> trouble.
There are plenty of online converters available on the Internet - here's
one:
http://www.developerfusion.co.uk/utilities/convertcsharptovb.aspx
> Dictionary<int, SiteMapNode> nodes = new Dictionary<int, SiteMapNode>
> (16);
Private nodes As New Dictionary(Of Integer, SiteMapNode)(16)
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
Date:Fri, 17 Aug 2007 19:04:54 +0100
Author:
|
Re: SqlSiteMapProvider question for menu control
Thanks, That one worked better than the one i was using.
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Mark Rae [MVP]" wrote:
> "WebBuilder451" wrote in message
> news:7D6A2BEA-2EC9-4C11-A1E8-7E179097F6BE@microsoft.com...
>
> >I need to translate thi control into vb.net code and i'm having a little
> > trouble.
>
> There are plenty of online converters available on the Internet - here's
> one:
> http://www.developerfusion.co.uk/utilities/convertcsharptovb.aspx
>
> > Dictionary<int, SiteMapNode> nodes = new Dictionary<int, SiteMapNode>
> > (16);
> Private nodes As New Dictionary(Of Integer, SiteMapNode)(16)
>
>
> --
> Mark Rae
> ASP.NET MVP
> http://www.markrae.net
>
>
Date:Fri, 17 Aug 2007 12:10:03 -0700
Author:
|
|
|