standard .NET controls

  • Thread starter Thread starter Jon
  • Start date Start date
J

Jon

Im trying to use the basic .NET componants and controls
and have used the standard list box.
Is there any way to use this without it being a server
side control. I just want to add/remove elements form a
list box clinet side but I cant seem to do this without it
doing a server side call and refresh the page?

Any advice
 
The "Web Form" controls (as the are called from the VS.NET Toolbox) are all
server-side controls. The "HTML Controls" are all client-side controls.
Visually, you can tell because the server-side controls will have a small
green triangle in their upper left corner.
 
Back
Top