Articles
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Tuesday, May 21, 2013
Home
Articles & Samples
Dev Search
Sample Chapters
Link to US
Contact
Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > ASP > Controls
Search
DevASP

What's New
What's Hot

Customizable ASP Tab Navigational Bar       
Total Hits: 112  |  Today: 0 Author: Prabhu Kumar M       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article is all about writing a simple ASP code to build the rich navigation bar. The source code provided with this article is written entirely in VBScript....

Storing Data from Dynamic Controls Using ASP.NET 2.0 Callback       
Total Hits: 130  |  Today: 0 Author: David Vineyard       Rating:  
Read Reviews | Write Review |              Your Rating: 

While developing with ASP.NET 2.0, I ran into a situation where I needed to create controls dynamically. As usual I started looking for best practice methods by searching the websites and blogs I often turn to. Every example I found talked about the need to recreate the dynamically created controls on postback in order to retrieve the data the user had input or altered. This makes sense, after all without the controls the viewstate data for the controls has become orphan data. What if you no lon...

How do I control access to an area?       
Total Hits: 108  |  Today: 0 Author: classicasp.aspfaq.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

If you want to roll your own permissions, then creating a login for a section of your web site is fairly easy. First, create a login form (loginForm.asp):...

Building an Enhanced ASP.NET GridView Control       
Total Hits: 1109  |  Today: 0 Author: Rachael Schoenbaum       Rating:  
Read Reviews | Write Review |              Your Rating: 

The GridView is a great control that allows you to display paginated results. But what happens if you want to change the underlying display for all of your projects? This article shows you how to extend the GridView so that it displays a summary row and allows pagination and sorting in that summary row....

A Custom ASP Error Class with Pop-up Dialog Box       
Total Hits: 403  |  Today: 0 Author: Matt Rutledge       Rating:  
Read Reviews | Write Review |              Your Rating: 

Have you ever needed some custom error handling for your asp site. I found that we had a need for it at my office, so I came up with a class that uses VBScripts Error handling object....

Converting Our "Tell A Friend" Sample to an ASP.NET User Control       
Total Hits: 105  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

User controls are one of the things that make developing in ASP.NET more productive then developing in classic ASP. By encapsulating a given set of functionality into a control, it can easily be reused throughout your project with a very minimal amount of effort....

Update Multiple Records with the DataGrid, DataList and Repeater       
Total Hits: 168  |  Today: 0 Author: Lee Chen       Rating:  
Read Reviews | Write Review |              Your Rating: 

.NET provides us with rich data controls to update a database. Both the DataGrid and DataList controls have built-in support for updating data with EditItemTemplate. These controls make the process easy, powerful, and smooth. However, the .NET data controls' built-in database updating is a single-row-based updating. You update only one record at once, and the Repeater provides no updating capability at all. In our daily programming practice, we need a function to update more than one record at a...

ASP.NET Data Web Controls Kick Start       
Total Hits: 334  |  Today: 0 Author: Scott Mitchell       Rating:  
Read Reviews | Write Review |              Your Rating: 

An Introduction to the DataGrid, DataList, and Repeater.
What Are Data Web Controls? The DataGrid Web Control. The DataList Web Control. The Repeater Web Control. Determining What Data Web Control to Use. Summary. On the Web....

Transitioning To ASP.NET - Part 1 Server Controls       
Total Hits: 282  |  Today: 0 Author: Carvin Wilson       Rating:  
Read Reviews | Write Review |              Your Rating: 

The long awaited Active Server Pages .NET (ASP.NET) is the replacement for the current version of ASP. This key component of the new .NET framework has the potential to save organizations time and money by allowing them to establish object-oriented frameworks for the web applications. Microsoft has done an excellent job with automating common web development tasks, but more importantly they have created a tool that gives developers the ability to handle any business problem. In this first articl...

WebControls Beta version 0.5 Comparison Introduction       
Total Hits: 224  |  Today: 0 Author: Minh Truong       Rating:  
Read Reviews | Write Review |              Your Rating: 

In March of of this year, the Microsoft WebControls team released the ASP.NET WebControls Beta version 0.5. The WebControls package included the TreeView, ToolBar, TabStrip, and MultiPage controls. This wasn't the first time a TreeView, ToolBar, nor Tabs control was seen on a web page, but there's something exciting about putting a TreeView control into your ASPX page with a simple mswc:TreeView ... ... /mswc:TreeView syntax....

Using HTTP Handlers to Create a Progress Bar Control       
Total Hits: 115  |  Today: 0 Author: Matt Rutledge       Rating:  
Read Reviews | Write Review |              Your Rating: 

ASP.NET uses a pipeline model to process the requests to the scripting engine. Here is generally how the pipeline model works.

1. An HTTP request is passed to an instance of the HttpRuntime() class.
2. The HttpRuntime() object examines the request to find out which application to send the request to.
3. Then .NET uses a HttpApplicationFactory to either create or find an application.
4. Once the proper application is found the request is sent to through any HttpModules...

Taming the ASP.NET Validation Summary Control       
Total Hits: 257  |  Today: 0 Author: Manu Gupta       Rating:  
Read Reviews | Write Review |              Your Rating: 

ASP.NET provides a lot of very strong and effective web controls. One of the most widely used controls is the Validation Summary control. It gives us a neat and clean way to display error messages on the web page. During my current program assignment I came across a problem when I had to disable the Validation Summary control on one button click and enable Validation Summary control on the same or other button click....

The Value of .NET Server Controls in Content Management       
Total Hits: 352  |  Today: 0 Author: Bill Rogers, Founder and CEO, Ektron, Inc.       Rating:  
Read Reviews | Write Review |              Your Rating: 

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. Microsoft .NET and server controls as an integral part of Microsoft's .NET strategy, allow Web developers to create applications much more easily. Using techniques such as drag and drop a developer can quickly perform functions that previously required extensive coding. While Microsoft offers a library of server controls, de...

Implementing Tabs using MultiView Control : ASP.NET       
Total Hits: 132  |  Today: 0 Author: Satish Kumar J       Rating:  
Read Reviews | Write Review |              Your Rating: 

Using MultiView control in ASP.NET we can achieve tabs in a web page, now in this example I am going to explain how we can create tabs using MulitView control

Create a web application and add a Table control with 1 row and 3 columns and a MultiView control with 3 views, you can refer below screen shot

Here we are adding 3 cells using table control and each cell will have a link button which acts as Tab...

ASP TreeView (Version 2.0)       
Total Hits: 371  |  Today: 0 Author: starschen.       Rating:  
Read Reviews | Write Review |              Your Rating: 

ASP TreeView is an advanced TreeView control that's base on ASP technique. server side: Asp + JScript, client side: JScript + HTML....

Custom ToolTips Dll (Version 2.0)       
Total Hits: 523  |  Today: 0 Author: Arkadiy Olovyannikov       Rating:  
Read Reviews | Write Review |              Your Rating: 

This package contains a .dll that encapsulates a number of API functions to allow you to create customized tool tips for any control. You can customize the tooltip by setting its background and foreground colors, the delay time and visible time, whether or not the tooltip is centered, and whether or not it appears as a balloon.

Also included is a sample project; be sure to register the .dll first before running it. The demo illustrates how to use the .dll with listbox, listview, command b...

Send Screen Captures Into A Database       
Total Hits: 261  |  Today: 0 Author: Peter A. Bromberg       Rating:  
Read Reviews | Write Review |              Your Rating: 

Have you ever been in a programming situation where you wanted to be able to have users do an ALT/PrintScreen or CTRL/PrintScreen to capture information from their desktop and send it up to a database to be saved? This is very common in bug-tracking and other types of reporting software where a user may be entering a bug report, and they need to be able to store a picture along with the report that shows the error "in flagrante delicto" (caught in the act). There is nothing like a picture to tel...

More Useful Form-Building Routines       
Total Hits: 330  |  Today: 0 Author: Rama Ramachandran       Rating:  
Read Reviews | Write Review |              Your Rating: 

Last month's column contained some ASP routines that made the task of building a form easy and elegant. This month I'll extend the concept by showing you how to build List and Combo boxes automatically. Usually, these form controls need to display data from a database; therefore, the form-building routines must accommodate database access, which makes the code interesting....

Form-Building Routines III—the Conclusion       
Total Hits: 300  |  Today: 0 Author: Rama Ramachandran       Rating:  
Read Reviews | Write Review |              Your Rating: 

If you've been following this series, the last couple of articles (see Resources) focused on writing some useful "form-building" routines in ASP pages. I'll continue this month by developing routines for displaying check boxes and radio button controls. Again, like last month's article, the focus will be on building data-bound controls....

Client-side Cookies, Unchecking Checkboxes, Microsoft.com Toolbar, WebBrowser Control, and More       
Total Hits: 356  |  Today: 0 Author: Robert Hess       Rating:  
Read Reviews | Write Review |              Your Rating: 

I have a series of pages on my Web site, with different want ads on each page. Users click on the ads they want to see. In order for me to identify users and put them in touch with the person who placed the ad, I request that users register with a user ID, password, and e-mail address, which they keep for future visits. Before registered users look at the ads, I would like them to enter their user ID and password. Then, when they click on an ad, a form is sent to me with the user ID, password, a...


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com