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

(Page 24 of 26) 779 Result(s) found 

 

GetWebConfigCustomKeyValue - Return and cache a custom key's value from Web.Config
Total Hit (1373)
Rating
GetControlHtml - Retrieving the HTML code generated by the input ASP.NET server control
Total Hit (2583)
Rating
Adding a confirmation popup for delete buttons defined within templates
Total Hit (3624) The DataList and DataGrid controls easily allow to add a "Delete" button/hyperlink in your template. When clicked, this button/link raises a DeleteCommand event that you can handle to delete the data item of the parent DataList's/DataGrid's row. Here's an example that shows how to declare two column ....Read More
Rating
Registering ASP.NET on IIS after installing the .NET Framework
Total Hit (1951) If you install the .NET Framework on a system that has IIS already installed, IIS is automatically configured to handle requests to ASP.NET pages, and to redirect the execution to the ASP.NET runtime. However, it may happen that you installed the framework on a Windows 2000 Professional system where ....Read More
Rating
AppException - An extended Exception class that logs the errors to file
Total Hit (3914)
Rating
This is a link to a different site Implement Custom Paging in the ASP.Net Datagrid Control
Total Hit (531) The inbuilt paging mechanism of the ASP.Net datagrid control is convenient, but can be very inefficient. The problem with the inbuilt system is that the entire resultset is gathered again and again with each page change. Assume you have a table with 200 rows in it and that you are displaying 10 rows ....Read More
Rating
This is a link to a different site Performing Browser Detection Using ASP.NET
Total Hit (604)
Rating
This is a link to a different site Ascending and Descending Sorting of Columns in an ASP.NET DataGrid
Total Hit (803) The DataGrid allows ascending sorting very easily. But we've all gotten used to applications like Outlook which allow two way sorting. Click a column header once and you get ascending sorting, click again and you get descending sorting. We'll see one way to implement it with the datagrid. ....Read More
Rating
This is a link to a different site How can I format numbers and date/times using ASP.NET? For example, I want to format a number as a currency.
Total Hit (1351) One of the nice things about VBScript was its built-in formatting functions, such as FormatCurrency, FormatNumber, FormatDateTime, etc. (For more information on these functions see this FAQ or, better yet, check out the Strings FAQ Category.)
Rating
This is a link to a different site Web Log Analysis Tool Using ASP.Net and C#
Total Hit (1061) An article on generating web logs and analysing them using C#
Rating
This is a link to a different site Deciding When to Use the DataGrid, DataList or Repeater
Total Hit (1099) 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 j ....Read More
Rating
This is a link to a different site Comparing the Performance of Various Iteration Methods
Total Hit (515) When you have to iterate through large amounts of data, you can save significant time by choosing your iteration method carefully. Method #1: Enumeration Method #2: Indexing Method #3: Indirect Array Method #4: Direct Array Method #5: Pointer Math ....Read More
Rating
This is a link to a different site Cookieless ASP.NET forms authentication
Total Hit (997) They say it is not possible to use cookieless forms authentication in .NET. Well it is, and relatively easy to accomplish!
Rating
This is a link to a different site Generating XP style webparts from a web control
Total Hit (1066) This article demonstrates how create XP style collapsible web custom control menu using asp.net. This control includes many features like binding xml to the control, drag/drop, hyperlinks etc
Rating
This is a link to a different site NoSpamEmailHyperlink: 3. Email Encoding and Decoding
Total Hit (682) Using C# to encode an e-mail address on the server and JavaScript to decode the address on the client.
Rating
This is a link to a different site Upload multiple files Hotmail style
Total Hit (765) Upload multiple files using one HttpInputControl
Rating
This is a link to a different site Check Windows Identity?
Total Hit (898) When you use ASP.NET Windows authentication, ASP.NET attaches a WindowsPrincipal object to the current request. This object is used by URL authorization. The application can also use it programatically to determine whether a requesting identity is in a given role. ....Read More
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 DataCalendar
Total Hit (660) A data-driven, templated sub-class of the ASP.NET Calendar control
Rating
This is a link to a different site HTML Wait-Confirm Button Server Control
Total Hit (628) An article showing a quick way to create a custom control that will prompt the user before submitting, and then will change the text of the button to "Please Wait.." and the mouse cursor will change to an hourglass.
Rating
This is a link to a different site A Data Driven Tab Strip User Control
Total Hit (1077) Reduce implementation time with a reusable, externally driven tab strip control
Rating
This is a link to a different site SWAT - A simple Web-based Anomalies Tracker - Part 5
Total Hit (962) This is the fifth article in a series describing the development of an application I devised as a learning project. The purpose of the project was to gain experience developing in the .NET environment. The goal I had given myself was to define a WEB-based application and then develop the application ....Read More
Rating
This is a link to a different site Use System.IO to Explore Data About Your Files
Total Hit (682) This is a fairly simple little program to get you started exploring the System.IO namespace. In this program we will discover the Attributes, Creation Date and Time, Last Accessed date and time, and Last Modified date and time of a file on disk. This example happens to use a simple text file, but th ....Read More
Rating
This is a link to a different site An Extensive Examination of Web Services: Part 2
Total Hit (1729) Examines creating Web services using Visual Studio .NET. Looks underneath the hood of the code created by VS.NET.
Rating
This is a link to a different site .NET and GDI+: Transforming Images on the Server - Introduction and Examples, Part -I
Total Hit (982) New to developers in the .NET Framework, and hence ASP.NET, is the ability to manipulate images through the GDI+ managed class interface (a set of wrappers) which is distributed as part of the Microsoft .NET Framework, allowing access to underlying operating system functionality that provides two-di ....Read More
Rating
This is a link to a different site Session Management in ASP.NET
Total Hit (792) Explains cookie-based and cookie-less session management with the help of HTTP headers.
Rating
This is a link to a different site Validated TextBox for ASP.NET
Total Hit (615) An article on how to make a composite custom control
Rating
This is a link to a different site Modal popup dialog window with multiple parameters
Total Hit (642) Modal popup dialog window which passes and returns multiple parameters
Rating
This is a link to a different site Creating Dialog Boxes using ASP.NET, JavaScript and IE
Total Hit (767) ASP.NET web forms provide a new programming model that eases many development tasks. However, there is misconception amongst many programmers that one should only use the server side model. In fact, most of the books available today give emphasis on server side programming. This is natural as any bo ....Read More
Rating
This is a link to a different site XML paging using XML + XSL + CSS
Total Hit (818) Send params to an XSL file
Rating


(Page 24 of 26) 779 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.