Programmer's Heaven - For C C++ Pascal Delphi Visual Basic Assembler C# .Net java JSP ASP ASP.NET Javascript developers!

Members
Username:

Password:

Auto-login

Register
Why register?
Forgot Password?
Blogs new Blog section
Jobs
Webtools
Message Boards
FAQ
CodePedia
Free Magazines
User search
What's New
Top lists
RSS Feeds RSS Feed

Submit content
Contact Us
Link To Us
Help



Advanced Search
Newsletter
E-mail:


More information
Current area: HOME -> ASP / ASP.NET -> Server Controls Articles Adds this page to your personal favorites
  Server Controls
A Google Maps .Net Control
An ASP.Net server control wrapper for the Google Maps API
Visits: 608 Updated: 2005-9-3  Rating: (Not Rated)  More info & Ratings
Add a JavaScript popup to an ASP.NET button
How to add a javascript popup (alert) question to an ASP.NET button control.
Visits: 1473 Updated: 2004-3-8  Rating: (Not Rated)  More info & Ratings
Advertisment
Adding and Configuring Server Controls to a Web Forms Page Using C# .NET
Generally, a Web application provides information from a Web server to different client users over the Internet. The Hypertext Transfer Protocol (HTTP) is used to send requests from a client's Web browser to the Web application on the Web server. The HTTP then sends back responses from the Web server to the Web browser on the Internet.
Visits: 45 Updated: 2008-2-18  Rating: (Not Rated)  More info & Ratings
Adding Design-Time Support to ASP.NET Controls
Learn how to build controls that take advantage of Microsoft Visual Studio .NET's design-time support, which makes them as easy to use as the built-in controls that come with Microsoft ASP.NET.
Visits: 761 Updated: 2003-12-16  Rating: (Not Rated)  More info & Ratings
An overview of link labels
The LinkLabel control exhibits links to other objects, such as files or Web pages. Class LinkLabel is derived from class Label and therefore inherits all of class Label’s functionality. A LinkLabel looks as underlined text. When the mouse moves above the link, the pointer modify to a hand. This is alike to the behavior of a hyperlink in a Web page. The link can change color to indicate whether the link is new, visited or active. When clicked, the LinkLabel generates a LinkClicked event.
Visits: 8274 Updated: 2002-5-17  Rating: (Not Rated)  More info & Ratings
ASP.NET Feature Saves Development Time
This article explains how the ASP.NET panel-control feature provides an easy and efficient way to gather user input and display desired results.
Visits: 564 Updated: 2001-6-7  Rating: (Not Rated)  More info & Ratings
Base Server Control Properties
Examples of dynamically setting and retrieving the properties inherited from the base WebControl class.
Visits: 337 Updated: 2002-4-12  Rating: (Not Rated)  More info & Ratings
Building ASP.NET User and Server Controls -- Part 1
The introduction of .NET has led to many changes, including the way we work with forms and controls. This is especially true in the Internet realm because this environment is trying desperately to catch up with the interactive feel of traditional Windows forms-based applications.
Visits: 641 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Creating a DataBound List of Radio Buttons
In this article, we'll examine how to create a series of radio buttons whose values are automagically populated from a database table! We'll also look at how to respond to the user selecting a particular option and showing more detailed information based upon the radio button selected.
Visits: 1226 Updated: 2001-7-30  Rating: (Not Rated)  More info & Ratings
Custom Server Control Icons
In this first VSNET Tip, learn how to add a custom icon to your custom ASP.NET server controls!
Visits: 532 Updated: 2002-4-12  Rating: (Not Rated)  More info & Ratings
DataGrid - Master/Child/Slave Details in ASP.NET, C# - Expand/Collapse Rows (Master/Detail View)
Using ASP.NET, C#, Framework 1.1 to show a master/detail grid with javascript to expand & collapse
Visits: 127 Updated: 2008-3-3  Rating: (Not Rated)  More info & Ratings
Deciding When to Use the DataGrid, DataList or Repeater
Learn about ASP.NET's three controls for displaying data: the DataGrid, the DataList, and the Repeater. Each of these controls has unique traits and associated advantages and disadvantages. When creating an ASP.NET application that displays data, it is important to choose the right control for the job. As we will see in this article, choosing whether to use the DataGrid, DataList, or Repeater is a tradeoff between three factors: usability, development time, and performance.
Visits: 79 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Display Hierarchical Data by Using Nested Repeater Controls
This article describes how to use nested Repeater controls to display hierarchical data. You can apply this concept to other list-bound controls.
Visits: 886 Updated: 2003-12-19  Rating: (Not Rated)  More info & Ratings
Easily Adding Functionality to ASP.NET Server Controls
Have you ever found yourself using one of the built-in ASP.NET server controls and needed to add some trivial extra functionality? For example, maybe for a Button Web control you wanted a confirm client-side dialog box to appear, requiring the user to click OK to actually submit the form, or maybe you wanted to enhance the DataGrid's output so that whenever the user moused over a cell, the cell's background color changed to a "highlighted" color.
Visits: 424 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
File Upload control in C# as a friendly web user control. Easy upload, delete, and view options
Web User control written in C# using VS2005 to allow file upload, delete, and view option. Easy property settings, makes it easier for developers to use.
Visits: 78 Updated: 2008-3-3  Rating: (Not Rated)  More info & Ratings
GridView Javascript Click Row and DataBinding
This article shows 2 common tasks with the ASP.NET GridView: Bind a List (generic) of Objects as DataSource and react with javascript on a click in a row. In the example a List with User-objects is displayed, on clicking a User, the User's name is shown in a javascript-alert.
Visits: 272 Updated: 2007-7-24  Rating: (Not Rated)  More info & Ratings
HTML & ASP.NET Server Controls
Article discussing the difference between the HTML and ASP.NET server controls
Visits: 663 Updated: 2002-4-12  Rating: (Not Rated)  More info & Ratings
Inheriting An ASP.NET Server Control
How to easily customize an ASP.NET server control by deriving from it.
Visits: 484 Updated: 2004-2-5  Rating: (Not Rated)  More info & Ratings
Introduction to custom server controls
In this article I'll guide you through the creation of a guestbook, as an introduction to developing custom server controls
Visits: 381 Updated: 2004-3-8  Rating: (Not Rated)  More info & Ratings
Loading .NET Server Controls - Client Side?
I decided to write a trick article I was just messing around the other day and wanted to figure out an easy way to load .NET server controls from the client for display purposes only (you could also code to handle postbacks) Well, I found a very easy way to do this with IFRAMES. IFRAMES is essentially an embedded frame within a page in the past we have used these for XML data sources. This article is going to go through how to develop an .html page that has an IFRAME that is used to fetch user controls from the server and display them in the .html page.
Visits: 914 Updated: 2003-12-16  Rating: (Not Rated)  More info & Ratings
Making A Simple Server Control
In this tutorial we will be walking you through creating your own server control. Granted, this is a very simple example, but will give you an idea of what you have to do to create one. I will be using members and interfaces you may not be famililar with, I will give you a high level description of what they are, but will not be going into much detail. The control we are going to make will output the same functionality and User Interface as the DataBinding and XML tutorial. Things you will need for this tutorial:
Visits: 266 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Opening Child Windows Using Server Side Controls
The technique of opening child or "pop-up" windows from a Web page is useful in many scenarios. These include displaying additional information related to the main page or viewing, adding or editing the information from a row in a detail grid. There are a number of ways to open windows from a Web page using client side scripting, but how can you manipulate and control this behavior from server side script? This article will examine two different ways to open child window from server controls and we will also look at how to pass data back from the child to the parent and trigger a server side event on the parent form.
Visits: 895 Updated: 2003-12-16  Rating: (Not Rated)  More info & Ratings
Reusability in ASP .NET, Part 2
One of the key improvements in ASP .NET over classic ASP is the Introduction of server controls. When you want to use a control from the Microsoft® .NET Framework as a server control, you must mark it with the runat=server attribute to make it visible to and programmable on the server.
Visits: 301 Updated: 2001-9-24  Rating: (Not Rated)  More info & Ratings
The Value of .NET Server Controls in Content Management
Server controls are just one of the many developments in content management solutions. Their power cannot be overstated for developers to be more efficient than ever before.
Visits: 286 Updated: 2006-1-16  Rating: (Not Rated)  More info & Ratings
Using ASP.NET Server Controls
A basic overview of ASP.NET and how to use server controls
Visits: 559 Updated: 2002-2-28  Rating: (Not Rated)  More info & Ratings
Webform Dynamic Buttons
This article talks about the usage of LinkButton and Panels. The author explains some of the issues that he faced while learning ASP.NET.
Visits: 1244 Updated: 2002-11-20  Rating: 
Wiring Up Event Handlers to Dynamically Created Custom Server Controls
This article demonstrates how to dynamically add a server control and how to dynamically wire up methods to handle events for that control. This example looks at a very simple control, the Button control found in System.Web.UI.WebControls. But instead, of just simply loading the Button class, I created a custom class that is derived from Button and added my own attributes.
Visits: 736 Updated: 2003-12-16  Rating: (Not Rated)  More info & Ratings


Found a broken link? Please report it to us.

  See also  
 Articles
   .NET Articles
    Components
   C# Articles
    Controls
   ASP.NET Articles
    Components
 

Sponsored Links 
Web based bug tracking - AdminiTrack.com
AdminiTrack offers an effective web-based bug tracking system designed for professional software development teams.
Computer Professionals: Are you owed Overtime?
Federal and State Laws may allow computer professionals to collect overtime. Our law firm is experienced, and has initiated class action lawsuits against some of the largest computer companies to collect back pay and overtime. Strictly Confidential.
CSTSOFT Instrumentation .NET & ActiveX Components
A collection of 13 instrumentation .NET/ActiveX/VCL components including Gauge,Knob,LED,Trend etc.
web
Find Local Contracators Today. Quick, Free Service, No Obligation.
Save On Prescriptions
You May Already Have Medco & Not Even Know It. Learn More.
Buy a link now

Advertisement

  Free Magazine  
Free Magazines
Software Development Targets corporate developers and technical managers working at mainly mid- to large-size companies with sizable development staffs....
subscribe now


Newsletter Submit Content About Advertising Awards Contact Us Link to us    
© 1996-2008 Community Networks Ltd All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by ASP.NET Konsult - Synchron Data.