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

Technologies
 

CodeDigest Navigation
 


Technology News
No News Feeds available at this time.
 

In Community
Read more..

Read more..

 
Home
Recent Articles
DateTime is one of the most frequently used objects in any project we work. Most often, we get requirements to do some basic operations like formatting, adding, comparing on the datetime objects in our projects. This article will help us to understand the DateTime object and other operation we can do with datetime object.
Repeater control is one of the light weight control when compared to the other databound controls. It provides more flexibility on the layout of data displayed and the control itself will not render any additional HTML like GridView and DataList control do. Repeater control as such will not provide edit/update functionalities for the data. In this article, we will overcome this difficulty and provide an edit update feature similar to GridView control using the powerful jQuery library and Ajax.
This article demonstrates using the windows API FileOpen Dialog to get a user's file selection.
Arrays are an extremely important part of any programmer's code library. There are static and dynamic arrays. This article discusses these two types of arrays and includes examples of each.
What is an array?In simplest terms, an array is an organized collection. It can be a collection of anything. The important thing to remember is that it is a collection. This example uses an array of system.drawing.color.colors to change the background color of a windows form.
CodeDigest
 
Other Activities
FAQs and Interview Questions
 
Recent ASP.Net Articles
It is a technique where we can provide expand/collapse feature to a section of page. In this article, we will create a collapsible panel control that is similar to CollapsiblePanel extender control using DIV tag and jQuery.
This Part 1 of the two part article shows how you may use the new MS Chart control in an ASP.NET web application.
Peter revisits the problem of dealing with multiple updates to the same data, but this time he looks at a solution that involves the ObjectDataSource.
Peter has been experiencing culture shock as he adapts to working with JavaScript, starting with the discovery that JavaScript isn't an object-oriented language.
Dino Esposito explores the various aspects of the AJAX API you can leverage in ASP.NET MVC applications.
URL rewriting enables your Web application to support SEO-friendly URLs and logical site navigation, while using a different physical navigation structure in the backend. Jeffrey Hasan shows us how, using ASP.NET and IIS 6.0
In this article we are going to demonstrate jqGrid, JQuery Grid plugin which is used to display tabular data on the form. The article will also discuss how to export the Grid to the Excel format.
In this article, we will be looking at how we can use AJAX to implement a WCF Service, so that it's methods are available to client-side JavaScript. This is an extremely powerful tool, as we are able to access the WCF Service almost instantaneously, without posting back a page or waiting several seconds.
To fully exploit User Controls, you need to treat them as object -- which includes having them fire events. If firing your own events is new to you, here's a step-by-step guide.
When it comes to creating and distributing custom Web controls, a little polish can go a long way. Steve C. Orr shows us how.