CODEDIGEST
Home Articles CodeDigest Tutorials FAQs
Skip Navigation LinksHome   Submit Articles and Win Geeky Prizes!!   You are not logged in.
Search
 

Product Spotlight
 

Technologies
 

CodeDigest Navigation
 

Technology News
No News Feeds available at this time.
 

In Community
No News Feeds available at this time.
 
CodeDigest Home
Recent Articles
Extension method is a new feature introduced in C# 3.0. It is a feature where we can add new methods to an existing type without modifying the original source and recompiling it.
There will be requirements where we need to rotate the text ads or links in an ASP.Net page. For example, to provide features like news or stock ticker for our websites we need to basically rotate news texts or links at equal intervals.
The Calendar control is one of the primarily used controls when we build applications that deal with dates. For example, a ticket booking system, attendence registers, etc.
It is obvious that any website we develop will have multiple pages and requires a navigation feature to move or browse between pages. This is a beginner level article that discusses various options for pasing values between pages and its pros and cons.
In Part 1 of this article series, we have seen some of the basic usages of ADRotator control in a webpage. In Part 2, we will see how to track an adverstisement performance by adding a hit counter for each adverstisement.
CodeDigest
 
Errors and Resolutions
Recent Errors
 
Other Activities
FAQs and Interview Questions
Technology News
 
Recent ASP.Net Articles
An overview of validation in ASP.NET MVC 2.0.
In this artcle, I will be explaining the common and mostly used web.config tags, their different sections and also will discuss about securing the the config file.
The TreeView control in ASP.NET is used to populated hierarchical data structure. There are scenarios in which we are not aware of the number of nested collections in the data source. In those circumstances it is wise to use recursion and populate the TreeView control. In this article we are going to demonstrate how to populate the TreeView control with N levels.
This article describes how to create an asynchronous form in ASP.NET MVC 2 with DataAnnotations and jQuery Validation plugin (custom validation attributes included).
In this post I will talk about how to use the tablesorter jQuery plugin in an ASP.NET MVC application to sort tabular data.
ASP.NET MVC makes working with AJAX really easy; it’s quite impressive how powerful the framework can be. JQuery adds extra features and makes AJAX calls really easy; we’ll see that all here soon.
In the year 2005 we published an article about creating master-detail GridView control. jQuery was not a first class citizen during that time and most of the work was performed by either plain old vanilla JavaScript or the server side code. With the advent of jQuery we can now create cool master-detail effects easily in less time and less code. This article explains how to spice up master-detail using jQuery.
This article shows the usage of GroupTemplate for grouping data using the data-bound ListView Control.
An easy and reusable way to create redistributable UserControl-like CustomControls based on ascx markup.
There are occasions when you want to highlight a row in the GridView (I usually want this based on a Boolean field).