Thanks mate.
"Chua Wen Ching" wrote:
> Hi Shailen Sukul,
>
> Oops. I am too used with windows form development. Okay, there is an article on asp.net treeview web control.
>
> Check this out:
>
>
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/aspnet-usingtreeviewiewebcontrol.asp
>
> Hope it helps. Good Luck!
> --
> Regards,
> Chua Wen Ching :)
>
>
> "Shailen Sukul" wrote:
>
> > Thanks for the answer.
> >
> > You said that TreeView can be built on the Windows.Forms.TreeView base class.
> > Does that mean that I will be able to use that in ASP. NET.
> >
> > What I mean to ask is that, what are the extra requirements for an ASP.Net treeview control, over a standard windows treeview control.
> >
> > Thanks
> > Shailen S
> >
> >
> > "Chua Wen Ching" wrote:
> >
> > > Hi there,
> > >
> > > It won't be that hard to create a custom control.
> > >
> > > Some additional information of using Treeview.
> > >
> > >
http://www.syncfusion.com/FAQ/WinForms/FAQ_c91c.asp#q617q > > >
> > > create a user control and inherit from System.Windows.Forms.TreeView
> > >
> > > example,
> > >
> > > class treeViewUserControl : System.Windows.Forms.TreeView
> > > {
> > > // get the sql table data and past in here.. or whatever.
> > > }
> > >
> > > Correct me if i am wrong. Cheers.
> > > --
> > > Regards,
> > > Chua Wen Ching :)
> > >
> > >
> > > "SoKool" wrote:
> > >
> > > > Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control.
> > > >
> > > > I intend to use a treeview to generate a dynamic menu by collating data from a Sql Server Table.
> > > >