473,385 Members | 1,275 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

TreeView control for web form in .NET1.1?

I do not know if there is a treeView control for web form in .NET 1.1.
I know there is IE Webcontrol package which has the treeview control for
..net 1.0. I have tested it in .net 1.1 before. It did not work. About the
status of it now? Is there any alternative for TreeView control for web form
in .net 1.1 and Visual Studio 2003? How about .net 2.0 and Visual Studio 2005?

Thank tou

David
Mar 31 '06 #1
5 1987
Hi,

ASP.NET 2.0 has a built-in, fully-supported, cross-browser compatible
TreeView control, but ASP.NET 1.1 doesn't, so with ASP.NET 1.1/VS2003 you'd
need to use 3rd party controls etc.

More about ASP.NET 2.0:s TreeView:

TreeView QuickStarts
http://www.asp.net/QuickStart/aspnet.../treeview.aspx

Display Hierarchical Data with TreeView in ASP.NET 2.0
http://aspalliance.com/732

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"david" <da***@discussions.microsoft.com> wrote in message
news:BE**********************************@microsof t.com...
I do not know if there is a treeView control for web form in .NET 1.1.
I know there is IE Webcontrol package which has the treeview control for
.net 1.0. I have tested it in .net 1.1 before. It did not work. About the
status of it now? Is there any alternative for TreeView control for web
form
in .net 1.1 and Visual Studio 2003? How about .net 2.0 and Visual Studio
2005?

Thank tou

David

Mar 31 '06 #2
ASP.NET 2.0 has a great new built-in treeview control.

Here are more details:
http://SteveOrr.net/articles/ASP2Controls.aspx
http://SteveOrr.net/articles/Ajax.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"david" <da***@discussions.microsoft.com> wrote in message
news:BE**********************************@microsof t.com...
I do not know if there is a treeView control for web form in .NET 1.1.
I know there is IE Webcontrol package which has the treeview control for
.net 1.0. I have tested it in .net 1.1 before. It did not work. About the
status of it now? Is there any alternative for TreeView control for web
form
in .net 1.1 and Visual Studio 2003? How about .net 2.0 and Visual Studio
2005?

Thank tou

David

Mar 31 '06 #3
Thank you very much.

David

"Teemu Keiski" wrote:
Hi,

ASP.NET 2.0 has a built-in, fully-supported, cross-browser compatible
TreeView control, but ASP.NET 1.1 doesn't, so with ASP.NET 1.1/VS2003 you'd
need to use 3rd party controls etc.

More about ASP.NET 2.0:s TreeView:

TreeView QuickStarts
http://www.asp.net/QuickStart/aspnet.../treeview.aspx

Display Hierarchical Data with TreeView in ASP.NET 2.0
http://aspalliance.com/732

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"david" <da***@discussions.microsoft.com> wrote in message
news:BE**********************************@microsof t.com...
I do not know if there is a treeView control for web form in .NET 1.1.
I know there is IE Webcontrol package which has the treeview control for
.net 1.0. I have tested it in .net 1.1 before. It did not work. About the
status of it now? Is there any alternative for TreeView control for web
form
in .net 1.1 and Visual Studio 2003? How about .net 2.0 and Visual Studio
2005?

Thank tou

David


Mar 31 '06 #4
Thank you very much.

David

"Steve C. Orr [MVP, MCSD]" wrote:
ASP.NET 2.0 has a great new built-in treeview control.

Here are more details:
http://SteveOrr.net/articles/ASP2Controls.aspx
http://SteveOrr.net/articles/Ajax.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"david" <da***@discussions.microsoft.com> wrote in message
news:BE**********************************@microsof t.com...
I do not know if there is a treeView control for web form in .NET 1.1.
I know there is IE Webcontrol package which has the treeview control for
.net 1.0. I have tested it in .net 1.1 before. It did not work. About the
status of it now? Is there any alternative for TreeView control for web
form
in .net 1.1 and Visual Studio 2003? How about .net 2.0 and Visual Studio
2005?

Thank tou

David


Mar 31 '06 #5
Yes,there is one at:-
http://msdn.microsoft.com/library/de...rols_entry.asp
Patrick

"david" <da***@discussions.microsoft.com> wrote in message
news:BE**********************************@microsof t.com...
I do not know if there is a treeView control for web form in .NET 1.1.
I know there is IE Webcontrol package which has the treeview control for
.net 1.0. I have tested it in .net 1.1 before. It did not work. About the
status of it now? Is there any alternative for TreeView control for web
form
in .net 1.1 and Visual Studio 2003? How about .net 2.0 and Visual Studio
2005?

Thank tou

David

Apr 1 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Jim | last post by:
The below problem occurs randomly too, but I've managed to isolate a sequence of events when it always happens: I have two forms (say Form1 and Form2). Form 1 contains a TreeView control. A...
5
by: SoKool | last post by:
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...
8
by: Hrvoje Voda | last post by:
What is wrong in this code? private void tree_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e) { if (e.KeyCode == Keys.Enter ) {
5
by: rh | last post by:
I created a user control that is made up of a TreeView and a VScrollBar. I set the TreeView.FullRowSelect = True and it works as expected (full row is visible, appears on top of everything else)...
0
by: MarkD | last post by:
I have an ASP.NET (VB.NET) application that calls all VB6 COM DLL via Interop. The DLL uses functionality contained in a Custom OCX Control (Also VB6) that in turn contains a standard TreeView...
6
by: Jarod_24 | last post by:
This is the exception i'm getting: System.InvalidOperationException: The action being performed on this control is being called from the wrong thread. You must marshal to the correct thread using...
2
by: dixiecanterbury | last post by:
I have a tree view on a form and I need to pass that treeview to another form keeping the state of the treeview (expanded nodes, etc). After the treeview has been manipulated (added nodes,...
2
by: Manikandan | last post by:
Hi, I'm using .NET1.1. I have a windows form with two controls 1.Treeview 2.Checkbox I added the items into tree view, the user selects the item in treeview. When i click the item in...
2
by: makennedy | last post by:
Hi Experts, Please help, I am a newbie to ASP.NET 2.0 may be I am doing something wrong or there may be a bug somewhere. Basically I have a TreeView Control which I have created...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.