Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

 

This is a link to a different site Using the CustomValidator Control
Total Hit (864) Sometimes one of the predetermined types of validation controls such as a RequiredFieldValidator, or a RangeValidator just will not do the job you need done. In this case you need to write a Custom Validator to achieve the desired results.
Rating
This is a link to a different site Empowering the ASP.Net Button Web Control, Confirm?
Total Hit (854) Learn how to create an ASP.Net confirm button using a combination of VB and JavaScript code
Rating
This is a link to a different site Utilize Built-in Validation Controls on Your Web Forms
Total Hit (1003) The following program demonstrates the use of several of the .Net validation controls. The first two text boxes utilize the RequiredFieldValidator control. There is no particular reason for these fields to be required - they just demonstrate use of the control. The use of RequiredFieldValidators is ....Read More
Rating
This is a link to a different site Creating Dependent DropDownLists
Total Hit (904) Forcing the contents of DropDownList2 to change based upon the selection made from DropDownList1 is a fairly common requirement of dynamic web pages. .NET makes this fairly simple to handle by using the OnSelectedIndexChanged event and setting AutoPostBack to True. To do this dynamically, retrieving ....Read More
Rating
This is a link to a different site Sorting in a DataList Control
Total Hit (923) It is relatively simple to add sorting to the DataList control if you don't mind link buttons residing outside the control. In this article we will demonstrate one way this can be done. There will not be a lot of verbage in this article as the code will pretty much speak for itself. First we will ta ....Read More
Rating
This is a link to a different site Multi-row Editing in the ASP.NET DataGrid
Total Hit (845) This articles demonstrates how you can have multiple datagrid rows available for editing at one time, not just the one row you are normally limited to.
Rating
This is a link to a different site Using Templates With the ASP.NET Repeater Control
Total Hit (953) The Repeater control is a lightweight control but has many uses and has become a favorite of mine. Many developers do not realize that you can use templates with the Repeater. It has a limited set of templates, with few properties, but you can make use of them as this article demonstrates. ....Read More
Rating
This is a link to a different site Implementing Paging in a DataList Control
Total Hit (859) The DataList does not include inbuilt support for paging. By overloading the Fill method of the DataAdapter, however, you can create a paging mechanism for the DataList
Rating
This is a link to a different site Mouseover Highlighting and the Repeater Control
Total Hit (870) The Repeater Control is a lightweight control that really comes in handy. In this article we examine one use of the Repeater and show how to implement row highlighting and selection.
Rating
This is a link to a different site Using the ASP.NET Panel Control
Total Hit (969) The Panel Control is so easy to use that I hesitated to even write an article about it. But I have received several questions about it so decided to write the article anyway. The Panel Control is a container that allows you to include other server controls on it. It is primarily used for containing ....Read More
Rating
This is a link to a different site Exploring the Internet Explorer WebControls
Total Hit (841) Treeview, Toolbar, and TabStrip controls have been a part of client-server applications for years. They are not as common on the web due to the dhtml involved. Actually, for the most part, Microsoft has implemented dhtml for these controls only if you are running IE 5.5 and above. Downlevel browsers ....Read More
Rating
This is a link to a different site Use the DataList Control to Present and Edit Data
Total Hit (856) The DataList is not as powerful as the DataGrid. It requires more work from you since it has no default data presentation format. However, the DataGrid begins to get very cumbersome as the number of columns of data you present increases. Anything more than half a dozen columns or so and you probably ....Read More
Rating
This is a link to a different site Exploring the Calendar Control
Total Hit (895) In this article we will utilize a number of the properties of the Calendar Control to change the calendar's appearance. The default values produce a usable, but not very attractive control. Much can be done to improve its appearance. We will also make use of two of the control's events to determine ....Read More
Rating
This is a link to a different site Work with the DataList control?
Total Hit (924) «LI» Introduction to Templated Controls «LI» Handling Postbacks from a Template «LI» Using Select and Edit Templates «LI» Finding a Control Inside a Template «LI» Section Summary
Rating
This is a link to a different site Working with AdRotator
Total Hit (1008) The AdRotator control presents ad images that, when clicked, navigate to a new Web location. Each time the page is loaded into the browser, an ad is randomly selected from a predefined list. The following sample illustrates using the AdRotator control. ....Read More
Rating
This is a link to a different site Include a calendar on a page?
Total Hit (943) «LI» Working With Calendar «LI» Date Selection Modes «LI» Selection Link Graphics «LI» Selection Link Text «LI» Adding Custom Content to Calendar
Rating
This is a link to a different site HtmlInputFile
Total Hit (907) An HtmlInputFile control handles uploading of binary or text files from a client browser to the server. File-upload works with all HTML 3.2 and later Web clients. Note that the Enctype attribute on the <form> tag must be set to "multipart/form-data".
Rating
This is a link to a different site Handling Errors
Total Hit (860) «LI» Customizing Error Pages «LI» Handling Errors Programmatically «LI» Writing to the Event Log «LI» Section Summary
Rating
This is a link to a different site Mulltiple File Upload - Hotmail Style
Total Hit (971) Demonstrates how to upload multiple files using one HttpInputFile control - Hotmail style! The Input type=file allows a user to select only one file at a time thereby forcing a developer to use multiple Input type=file on a page.
Rating
This is a link to a different site Using XML Web Control
Total Hit (771) Now a days use of XML is increasing quickly. Many times data that you want to display can be stored in XML files rather than statically putting it in HTML pages. Such XML data can be transformed to HTML by applying XSL style sheet to it. In traditional ASP, we used XSL Transform objects to achieve t ....Read More
Rating
This is a link to a different site Simple Paging in Repeater and DataList Controls
Total Hit (1093) Most of the times while creating database driven web pages like product listing, employee directory, etc. we display the data in grid format. ASP.NET has come up with Web Controls like DataGrid, DataList and Repeater that allow you to display your data in tabular format easily ....Read More
Rating
This is a link to a different site Top Questions about the DataGrid Web Server Control
Total Hit (1322) Windows Forms versus Web Forms DataGrid Controls Controlling Column Width, Height, and Alignment Customizing Column Layout in Display and Edit Mode Formatting Dates, Currency, and Other Data Showing and Hiding Columns Dynamically Adding Columns Dynamically Adding New Records to a Data Source U ....Read More
Rating


Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.