473,386 Members | 1,958 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,386 software developers and data experts.

How to use new ASP.NET2 Tree Control?

Is it possible to use the new ASP.NET2 Tree control by only downloading and
installing the new .NETFRAMEWORK v2? Or do you have to install visual studio
and the lastest version of IIS?

Anyone have a favorite article on how the new tree control does call backs
using web services?

Thanks,
Siegfried
Nov 19 '05 #1
5 1579
TreeView is included with ASP.NET 2.0, which means you get it with the .NET
Framework Redistributable 2.0 if you also have a compatible web server
installed that can utilize ASP.NET (IIS, Visual Web Developer 2005 Web
Server, etc.).

I'm not sure what you mean by call backs using web services, but note that
the treeview is a server-side control, meaning that it runs on the server in
the .NET Framework runtime environment. So, you can access web services
using the Framework's class libraries.

--

Joshua Mitts
jo****@msn.com

"Siegfried Heintze" <si*******@heintze.com> wrote in message
news:eq**************@TK2MSFTNGP10.phx.gbl...
Is it possible to use the new ASP.NET2 Tree control by only downloading
and
installing the new .NETFRAMEWORK v2? Or do you have to install visual
studio
and the lastest version of IIS?

Anyone have a favorite article on how the new tree control does call backs
using web services?

Thanks,
Siegfried

Nov 19 '05 #2
Oh good. How do I try it out? How does IIS know to use V2 of the .NET
framework?

"Joshua Mitts" <jo****@msn.com> wrote in message
news:#a**************@TK2MSFTNGP12.phx.gbl...
TreeView is included with ASP.NET 2.0, which means you get it with the ..NET Framework Redistributable 2.0 if you also have a compatible web server
installed that can utilize ASP.NET (IIS, Visual Web Developer 2005 Web
Server, etc.).

I'm not sure what you mean by call backs using web services, but note that
the treeview is a server-side control, meaning that it runs on the server in the .NET Framework runtime environment. So, you can access web services
using the Framework's class libraries.

--

Joshua Mitts
jo****@msn.com

"Siegfried Heintze" <si*******@heintze.com> wrote in message
news:eq**************@TK2MSFTNGP10.phx.gbl...
Is it possible to use the new ASP.NET2 Tree control by only downloading
and
installing the new .NETFRAMEWORK v2? Or do you have to install visual
studio
and the lastest version of IIS?

Anyone have a favorite article on how the new tree control does call backs using web services?

Thanks,
Siegfried


Nov 19 '05 #3
Just download and install the .NET Framework Version 2.0 Redistributable
Package (x86) from the following URL...it will install into IIS
automatically:

http://msdn.microsoft.com/netframewo...s/default.aspx

--

Joshua Mitts
jo****@msn.com

"Siegfried Heintze" <si*******@heintze.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Oh good. How do I try it out? How does IIS know to use V2 of the .NET
framework?

"Joshua Mitts" <jo****@msn.com> wrote in message
news:#a**************@TK2MSFTNGP12.phx.gbl...
TreeView is included with ASP.NET 2.0, which means you get it with the

.NET
Framework Redistributable 2.0 if you also have a compatible web server
installed that can utilize ASP.NET (IIS, Visual Web Developer 2005 Web
Server, etc.).

I'm not sure what you mean by call backs using web services, but note
that
the treeview is a server-side control, meaning that it runs on the server

in
the .NET Framework runtime environment. So, you can access web services
using the Framework's class libraries.

--

Joshua Mitts
jo****@msn.com

"Siegfried Heintze" <si*******@heintze.com> wrote in message
news:eq**************@TK2MSFTNGP10.phx.gbl...
> Is it possible to use the new ASP.NET2 Tree control by only downloading
> and
> installing the new .NETFRAMEWORK v2? Or do you have to install visual
> studio
> and the lastest version of IIS?
>
> Anyone have a favorite article on how the new tree control does call backs > using web services?
>
> Thanks,
> Siegfried
>
>



Nov 19 '05 #4
Well i don't think you need to have VS.NET or the latest IIS installed.
It depends what IDE you would prefer using.
Patrick

"Siegfried Heintze" <si*******@heintze.com> wrote in message
news:eq**************@TK2MSFTNGP10.phx.gbl...
Is it possible to use the new ASP.NET2 Tree control by only downloading and installing the new .NETFRAMEWORK v2? Or do you have to install visual studio and the lastest version of IIS?

Anyone have a favorite article on how the new tree control does call backs
using web services?

Thanks,
Siegfried

Nov 19 '05 #5
the tree control is included in the framework, so you don't need vs.

normally the treeview only does standard posts (same 1.0 controls). it has a
new property PopulateNodesFromClient, which will do a callback to the aspx
to get the nodes. to do this it uses the new ClientScriptManager class:

see
http://msdn2.microsoft.com/en-us/lib...tscriptmanager

clientcallback does not use webservice calls, but rather a standard form
post (application/x-www-form-urlencoded). it uses the XMLHttpRequest
(mozilla/firefox/safari/opera), the XMLHTTP active/x object (IE), or a
hidden iframe.

as always, the code is the best documentation.
-- bruce (sqlwork.com)
"Siegfried Heintze" <si*******@heintze.com> wrote in message
news:eq**************@TK2MSFTNGP10.phx.gbl...
Is it possible to use the new ASP.NET2 Tree control by only downloading
and
installing the new .NETFRAMEWORK v2? Or do you have to install visual
studio
and the lastest version of IIS?

Anyone have a favorite article on how the new tree control does call backs
using web services?

Thanks,
Siegfried

Nov 19 '05 #6

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

Similar topics

4
by: David W. Simmonds | last post by:
Outside of building a custom ActiveX control that would need to run on the user's machine and have security attributes set to allow such, does anyone have any code that will allow a combobox to...
10
by: dwok | last post by:
Does anyone know of a good article that discusses creating a "Tree View" control in ASP.NET? Or perhaps a Tree View Control that comes with source code? I have come across a lot of tree controls...
3
by: _DS | last post by:
Problem with mapping a directory tree to a tree control: It takes a while to recurse subdirs and map them to nodes. This is solved in some books I've seen (MacDonald, Albahari) by reading the...
0
by: Groove | last post by:
I've noticed something that's come up twice today alone. In ASP.NET 1, I could reference and use a control's property if the control was set to readonly or if it was set to visible = false. Such...
4
by: hvj | last post by:
I need to run a .NET1.1 program in a .NET2.0 CLR. The .NET1.1 exe starts correctly in .NET2.0. Now I want to debug in Visual Studio 2005. But when I try to open the .NET1.1 project, Visual Studio...
2
by: Kiran | last post by:
Hello all, I am using a tree to display stuff, and it is constantly updated, but what I have noticed is in the lowest level, there is clearly noticable cutoff of the text I place there. The cutoff...
4
by: dreamamit2001 | last post by:
Hi, I would like to know the ASP.NET2.0's(Controls, Menubar, Validations, Object Data Souce Controls, Treeview Control) compatibility with IE5.0 browser on Mac OS. If I don't use Client side...
1
by: =?Utf-8?B?Sm9obiBPbGJlcnQ=?= | last post by:
Rubber Banding in Net2.0 Is there any functionality built into Net2.0 for Rubber Banding (selection by click, drag and release) on the Control based classes such as the Pane class or other classes...
2
by: PanchalRakesh | last post by:
Hello, As I am Using TreeView Of Control Of 2.0 For Loading Data Upto 6 level , And Database Contain thousands of records , Loop runing Correct But when it showing data in page then it hangs the...
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: 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:
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.