German Wear Discount Shop - Click Here Write for Dotnet-friends and earn for your each submission [Dot]Net-Friends
Skip Navigation Links
Home
Latest
Fast Code
Articles
Tutorials
Online Resources
Forums
Login   | Hi, Guest



Latest Articles at ASP .NET
 

N-Layered Web Applications with ASP.NET 3.5 Part 1: General Introduction

This is part 1 in a series of 6 articles on designing and building N-Layered web applications using ASP.NET 3.5. This part briefly recaps my previous serious on the topic, and then digs into the new design and architecture of the application, with a look ahead at the coming articles. (Read more)
[By(Imar Spaanjaars (MVP ASP.NET)) :: Date(21/12/2008)]

ASP.NET AJAX CollapsiblePanelExtender - Tips and Tricks

CollapsiblePanel is a very handy control that allows you to add collapsible sections to your web page. In this article, we will see six tips while working with the CollapsiblePanelExtender. (Read more)
[By(Suprotim Agarwal) :: Date(20/12/2008)]

Chapter I: Server Control Basics

This chapter tells you about the basics of server control. (Read more)
[By(Praveen Masood) :: Date(19/12/2008)]

ASP.NET AJAX support in custom controls

How to update your ASP.NET custom control to make it work with ASP.NET AJAX correctly. (Read more)
[By(Sergiy Korzh) :: Date(18/12/2008)]

ASP.NET 3.5 MVC Application

This post gives you the basic overview on ASP.NET Models, Views and Controllers. It explains how all parts in MVC Application work together and discuss how the architecture of an ASP.NET MVC application differs from an ASP.NET Web Forms application. (Read more)
[By(Kalyan Bandarupalli) :: Date(17/12/2008)]

Highlight text in GridView using javascript

Sometimes it's a good idea to highlight some text in the grid. For example if you display a gridview with results of search, you can highlight the searching keywords. This article describes all you need to do that. (C# and javascript sources) (Read more)
[By(Tihomir Ivanov) :: Date(16/12/2008)]

Use image for error display in ASP.Net validators

This articles demonstrates the use of images to display errors in ASP.Net for all kinds of validators. (Read more)
[By(Sudheendra Desai) :: Date(15/12/2008)]

ASP.NET AJAX TabContainer - Tips and Tricks

An ASP.NET AJAX TabContainer creates a set of Tabs that can be used to save screen space and organize content. The TabContainer contains a number of TabPanel controls. You can place your controls inside each TabPanel. In this article, we will explore some common tips and tricks with the ASP.NET AJAX TabContainer control. (Read more)
[By(Suprotim Agarwal) :: Date(14/12/2008)]

Pouplating Multiple DetailsView based on single GridView using DataKeyNames in ASP.NET

This is a example of populating three different DetailsView based on selection of of record in a GridView using DataKeyNames in C sharp and ASP .NET In this example GridView is populated from a table called Website using SqlDataSource, on GridVies i have defined 3 DataKeyNames separated by comma, which will be used to fetch the record related to those DataKeyName from 3 tables in 3 DetailsViews (Read more)
[By(Amit Jain) :: Date(13/12/2008)]

ASP .NET -Populating dropdown based on the selection of first drop down in DetailsView using FindControl and ItemTemplate

Here is the code for populating a DropDown based on selection of another drop down list in Details view control of ASP .NET , in this example i've added two DropDowns in DetailsView control using TemplateField and InsertItemTemplate The Second DropDown (ddlProducts) is getting populated based on Category selected in Category DropDown , For this i've used SelectedIndexChanged event and findControl method to find the control and sqldataSource is used as datasource for the dropdowns and DetailView (Read more)
[By(Amit Jain) :: Date(12/12/2008)]

GridView with DataPager in ASP.NET 3.5

To page through data in a control that implements the IPageableItemContainer interface, DataPager control can be used. GridView has its own paging and does not implement IPageableItemContainer interface. (Read more)
[By(Nipun Tomar) :: Date(11/12/2008)]

The 3 Musketeers: - Model, View and Controller using HTTP Handler – Part 1

This article describe about the basics of MVC and then see how we can implement the same in ASP.NET using HttpHandlers. (Read more)
[By(Shivprasad Koirala) :: Date(10/12/2008)]

The 3 Musketeers: - Model, View and Controller using ASP.NET MVC – Part 2

This article describe steps of how to use ASP.NET MVC to build the three Musketeer’s Model, View and Controller. (Read more)
[By(Shivprasad Koirala) :: Date(09/12/2008)]

TextBoxFor(u => u.Name) - Unleash the power

Leverage the full flexibility of ASP.NET MVC to build truly domain-driven applications. Learn to use Expressions to automagically generate UI elements and validation from your domain. (Read more)
[By(Karl Seguin) :: Date(08/12/2008)]

Dynamic Data - Customizing the Delete Confirmation Dialog

I spent some time customizing the delete confirmation dialog in the Dynamic Data site I have been blogging about recently. Specifically, I looked at replacing the browsers default confirm dialog with a jquery thickbox and displaying a confirmation message that includes contextual information regarding the row being deleted. (Read more)
[By(Matt Berseth) :: Date(07/12/2008)]

ASP.NET MVC Tip: Dependency Injection with Unity Application Block

Demonstrate how to use dependency injection pattern in ASP.net MVC application using Microsoft’s Unity Application Block (Unity). If you want to develop an ASP.NET MVC application fully with Microsoft stack, you can use Unity Application Block to perform dependency injection. (Read more)
[By(Shiju Varghese) :: Date(06/12/2008)]

ASP.NET 3.5 URL Routing

This post speaks about basics of URL Routing and how URL Routing related to building a ASP.NET MVC Application. This post specifically speaks about how URL Routing is used in ASP.NET MVC Application. (Read more)
[By(Kalyan Bandarupalli) :: Date(05/12/2008)]

Cloudship: Membership Provider for the Cloud

Planning to move to the Azure Cloud, but already tied to the Membership API? This article guides you to build a complete Membership provider library which can be leveraged by existing application to link to Microsoft’s cloud platform Windows Azure with no friction. (Read more)
[By(Tanzim Saqib) :: Date(04/12/2008)]

Detecting Session Timeout and Redirect to Login Page in ASP.NET

In this example i'll show how to detect the session timeout which occurs when user is idle for the time specified as Session.Timeout,using C# asp.NET,if timeout occurs than user is redirected to login page to login again, for this i've set time out value in web.config file to 1 minute (Read more)
[By(Amit Jain) :: Date(03/12/2008)]

A Dynamic Menu For Your Dynamic Data

A Dynamic Menu For Your Dynamic Data So I am still playing around with building a Northwind Dynamic Data web site. Tonight I thought it would be interesting to see what it would take to create a menu for navigating the tables in the site. I was particularly interested in seeing if I could get some grouping or categorization to the metadata so I could create a multi-leveled menu. It turns out it wasn't too difficult at all (see the screen shot below - the menu is on the left). I have my tables organized into 4 categories: Sales, People, Products and Reports. And the cool thing is that this menu is completely dynamic. You can add, remove or reorganize the categories without touching the UI. And depending where you are keeping your metadata you could even do this without recompiling your app. The grouping is automatically discovered from the metadata and the menu is built solely off the it so everything 'just works'. (Read more)
[By(Matt Berseth) :: Date(02/12/2008)]

Reading RSS powered by FeedFlare™ using ASP.NET and LINQ

This article explores an ASP.NET application built on LINQ to XML. In this article, we will see how to read a RSS Feed using LINQ to XML. (Read more)
[By(Suprotim Agarwal) :: Date(01/12/2008)]

Implementing Windows Desktop Search with ASP.NET

Windows Search provides an easy and comprehensive desktop solution for finding content, whether it's on your PC, in an e-mail message or attachment, on a remote file share, or on the Web. In this article, we will see how to access the indexed data using ASP.NET as the programming language. (Read more)
[By(Jeny Young) :: Date(30/11/2008)]

CRUD operations using the List View Web Server Control

Using the ASP.NET ListView Control we can insert,edit, or delete records without writing any code. This post explains how to display and update data using the ListView control. We will use SqlDataSource control to retrieve results from the data source and act as the data source for the ListView control. (Read more)
[By(Kalyan.Bandarupalli) :: Date(30/11/2008)]

3 Different Ways to Display Progress in an ASP.NET AJAX Application

In this article, we will study three different techniques that allow you to visually display progress to users while performing partial-page updates using the UpdatePanel (Read more)
[By(Suprotim Agarwal) :: Date(29/11/2008)]

Test for User Group Membership in ASP.NET C#

This article describes a simple approach to determining whether or not a logged in user is a member of a group within the context of an asp.net web based application. (Read more)
[By(Scott Lysle) :: Date(28/11/2008)]

Building applications for Windows Azure

This article walks you through the steps to build an application from scratch on the recently released Windows Azure CTP, Microsoft’s answer to cloud computing. (Read more)
[By(Tanzim Saqib) :: Date(27/11/2008)]

Executing async task in asp.net

This article explores different ways to deal with long running tasks in Asp.net, leveraging PageAsyncTask and Asyncronous Delegates. (Read more)
[By(Andrea Colaci) :: Date(26/11/2008)]

Retain position of a DragPanel Extender after postback using ASP.NET AJAX

The DragPanel extender makes it extremely simple to add a ‘drag’ to your controls. However there is a functionality missing in the DragPanel extender. The DragPanel extender does not have the built-in capability to retain the position of controls that have been dragged, after a page postback. In this article, we will see how to retain the position of the DragPanel extender, after a postback. (Read more)
[By(Suprotim Agarwal) :: Date(25/11/2008)]

Storing and Retrieving Connection Strings in ASP.NET 2.0/3.5

This article demonstrates how to store database connection strings in Web.config in ASP.NET 2.0/3.5 and retrieve it for creating connection objects. (Read more)
[By(Mamta M) :: Date(24/11/2008)]

Loading Images Asynchronously Inside an ASP.NET GridView

Retrieving and displaying images in a GridView is a time consuming task. If done synchronously, this task can at times test the user’s patience. One way to provide a good user experience is to load the images asynchronously. So when the GridView loads, we initially display a default image for the user to view, while the actual images are being loaded from the database. In this article, we will see how to do so. (Read more)
[By(Suprotim Agarwal) :: Date(21/11/2008)]

XML DataSource control in ASP.NET 3.5

In this article I am going to discuss how to use XmlDataSource control in ASP.NET 3.5 (Read more)
[By(Raj Kumar) :: Date(20/11/2008)]

Tracking User Activity

Scott Mitchell talks about tracking user activity in web applications. (Read more)
[By(Scott Mitchell) :: Date(19/11/2008)]

ASP .net Template Server Control

The article shows a great use of Template server controls. In the example you will see how you can create a template server control and have access to all the other asp .net controls enclosed within. Here in the example we are trying to retrieve the values of the controls and restore them at later point. With .net if we design our base controls in right way it can save us thousands of lines of code. (Read more)
[By(Vishal Shukla) :: Date(18/11/2008)]

Ajax rounded corners control

There is a very good control in AJAX to make rounded type shape. We can create rounded shape in many design by using Corners property of this control. (Read more)
[By(Rahul Saxena) :: Date(17/11/2008)]

Authorization in ASP.Net MVC using XML Configuration.

Doing authorization in a clean way is always tricky, You want a delicate balance between an extreme abstraction and something like embedding roles in-side your compiled code, I have always preferred simple abstraction either using roles and their corresponding mappings in the database or using simple xml file to store action to role mappings. (Read more)
[By(Jigar Desai) :: Date(16/11/2008)]

Using HoverMenuExtender with ASP.NET ListView to Update, Delete and Insert Records

In this article, we will explore how to associate a HoverMenuExtender with a ListView control to update and delete records. The Listview control in this sample will also contain the functionality to add new records. (Read more)
[By(Suprotim Agarwal) :: Date(15/11/2008)]

DropDownList asp.net Control problems and challanges faced using appenddatabound items and autopostbacks

This tutorial will help you in appending data items to a dropdownlist control which already have some listitems from the markup.Sometimes in this there is a problem of duplicate items being appended every time the page refreshes.So here we will see how to workaround this situation. (Read more)
[By(Aashish Gupta) :: Date(14/11/2008)]

Implementing Cascading DropDownList in ASP.NET GridView

In this article, we will explore how to implement Cascading DropDownList in a GridView without writing a single line of code. We will be using the Categories and Products table of the Northwind database to show the cascading effect (Read more)
[By(Suprotim Agarwal) :: Date(13/11/2008)]

ASP.NET 3.5 URL Routing

Introduction This post speaks about basics of URL Routing and how URL Routing related to building a ASP.NET MVC Application. You can also use the URL Routing with the ASP.NET Web application if install the Visual Studio 2008 service pack1. This post specifically speaks about how URL Routing is used in ASP.NET MVC Application. URL Routing is critical element in the ASP.NET MVC Application. The reason for this is URL Routing determines incoming request to get mapped to the MVC Controller. (Read more)
[By(Kalyan.Bandarupalli) :: Date(13/11/2008)]

Display Master-Detail Data with the ModalPopup Extender and GridView

In the past we have often used the combination of the GridView and DetailsView to display Master-Detail data. Developers have also used pop-ups to depict similar scenarios where a user clicks on a ‘master’ row and the details are displayed in a pop-up window. I was recently exploring the ModalPopup extender control which allows a page to display content to the user in a "modal" manner. I thought of trying out the Master-Details scenario using the ModalPopup Extender. This article discusses how to do so. (Read more)
[By(Suprotim Agarwal) :: Date(12/11/2008)]

ASP.NET 3.5 MVC Application

Introduction This post gives you the basic overview on ASP.NET Models, Views and Controllers. It explains how all parts in MVC Application work together and discuss how the Architecture of an ASP.NET MVC application differs from an ASP.NET Web Forms application. (Read more)
[By(Kalyan.Bandarupalli) :: Date(11/11/2008)]

ASP.NET MVC Tip: Ajax and Validations using jQuery

This post demonstrate how to integrate jQuery with ASP.NET MVC and explaining how to send Ajax requests to Controller and also provides partial rendering with the help of a user control. This post also discussing client-side validation using jQuery. (Read more)
[By(Shiju Varghese) :: Date(10/11/2008)]

AJAX-Enabled Comment Form in ASP.NET and C#

In this article, we will be looking at how we can use Visual Studio to create a comment form, or guestbook to allow visitors of our web site to leave messages, in ASP.NET with the added functionality of AJAX. This means that the comments will almost immediately by added to a SQL database and displayed on the page without postback - the whole page will not be reloaded. (Read more)
[By(programminghelp.com) :: Date(09/11/2008)]

Spice Up Your Ad Reports - Using the ASP.NET Repeater Control to Group Data and Add Totals

The Repeater control is truly amazing. Being template driven, it gives you a lot of flexibility to manipulate and render the final output. In this article, we will exploit this flexibility of the ASP.NET Repeater and build a sample to demonstrate how to use the templates to group and display data. We will also use a little code to ‘total’/sum up our data and display it on the fly. (Read more)
[By(Suprotim Agarwal) :: Date(06/11/2008)]

LINQ to SQL Paging using GridView in C# and ASP.NET 3.5

This tutorial will show you how we can extend the LINQ to SQL Class and create methods that will allow us to page data from a SQL database. C# version. (Read more)
[By(dbtutorials.com) :: Date(05/11/2008)]

Access JavaScript variables on PostBack using ASP.NET Code

In this article, we will see how to pass javascript values on postback and then access these values in your server side code using ASP.NET. This article will primarily showcase two techniques of doing so. One using Hidden variables and the other using the __doPostBack() javascript method. (Read more)
[By(Suprotim Agarwal) :: Date(04/11/2008)]

Using AutoComplete in the AJAX Toolkit in C#

In this tutorial, you will learn how to implement something similar using the AutoComplete AJAX Control and a Web Method. We will be using a SQL database to match the typed text against and retrieve matches to the user. (Read more)
[By(Ajaxtutorials.com) :: Date(04/11/2008)]

ASP.NET Client Side State Management

The article discuss the client side state management techniques and when to choose client side state management over server side state management. (Read more)
[By(Gil Fink) :: Date(03/11/2008)]

Improving Performance By Using ASP.NET Caching - Output Cache

What is ASP.NET caching mechanism? When to use caching? and how can I use it in order to improve my site performance? are the questions this post series is going to answer. In today’s post I’ll introduce the output cache. (Read more)
[By(Gil Fink) :: Date(02/11/2008)]

Test Driven Development with ASP.NET MVC

One of the biggest benefits of MVC is it's direct link to Test Driven Development. Because of some of the new features of ASP.NET MVC Preview 5 (ModelBinders in particular), testing your Action methods is even easier. This article will demonstrate how easy it is to ensure the quality of your MVC app with unit tests. (Read more)
[By(Timothy Khouri) :: Date(01/11/2008)]

How to Rotate Ads without Refreshing the Page using AdRotator and ASP.NET AJAX

The AdRotator control in ASP.NET is extremely handy when it comes to randomly displaying advertisements on your site. However the ads are rotated only when the user refreshes the page. In this article, we will explore how you can easily rotate ads at regular intervals, without the user refreshing the page. (Read more)
[By(Suprotim Agarwal) :: Date(31/10/2008)]

Using UpdateProgress Control Effectively

UpdateProgress control provides a mechanism where we can inform user that the server side processing is still progressing. For example, we can provide a “Loading…” message or an image showing the progressing of the request. This article will give you more inputs on how to use the UpdateProgress control very effectively in our projects. (Read more)
[By(Satheesh Babu) :: Date(30/10/2008)]

Creating a Poll with AJAX, SQL and LINQ in C#

This tutorial will show you how to create an online voting system which will take advantage of AJAX and LINQ to allow users to quickly and easily vote for their favorite Political candidate, and be shown who is currently the front-runner. C# (Read more)
[By(dbtutorials.com) :: Date(29/10/2008)]

Data Access Component - Update Data in C# and AJAX

This tutorial will show you how to use C# and AJAX to create a Data Access Component that will display data from a SQL database and also allow edits of the data. (Read more)
[By(dotnettutorials.com) :: Date(28/10/2008)]

Display Request Processing Time in ASP.Net pages

There are some sites in internet who are displaying the time taken to process the request given to the server at the end of every page. This article will help us to implement this feature in our asp.net sites. (Read more)
[By(Satheesh Babu) :: Date(27/10/2008)]

Using JavaScript and UpdatePanels in ASP.NET 3.5

We all know that AJAX utilizes JavaScript, but what if we want to use our own JavaScript calls in conjunction with AJAX? This tutorial will show you how we can call JavaScript ourselves whilst using AJAX. We will be making use of the Alert method in JavaScript when the user adds a new entry to an XML file. (Read more)
[By(Ajaxtutorials.com) :: Date(26/10/2008)]

Developing a Shopping Cart in ASP.NET

Explains how to develop simple shopping cart web application by using recommended three tier architecture. (Read more)
[By(Piyali Sengupta) :: Date(25/10/2008)]

Animated Popup Master/Detail using GridView, DetailsView and JQuery with jqModal & UpdatePanel

Demonstrate how to build master/details data presentation using GridView, DetailsView as animated pop-up using jQuery jqModal and ASP.NET AJAX UpdatePanel. Also who how to color animate updated row on GridView after confirming update on DetailsView using jQuery. Live Demo Provided. (Read more)
[By(Muhammad Mosa) :: Date(24/10/2008)]

Unraveling the Mysterious of the ValidationGroup Control

ASP.NET validation works in mysterious ways especially when you want to validate a group of controls on the page. In this article we are going to dig deep into the ValidationGroup property and see how to validate a group of controls. (Read more)
[By(Mohammad Azam) :: Date(23/10/2008)]

New AJAX Support For Data-Driven Web Apps

This article shows three iterations of a page written with classic postback, then with UpdatePanel, and then with pure AJAX to illustrate how techniques employed on the server can sometimes perform better on the client. (Read more)
[By(Bertrand Le Roy) :: Date(22/10/2008)]

Creating a Custom Validation Control in ASP.NET

The BaseValidator class defines the basic implementation needed for all Validation controls. There are 6 very useful Validation Controls included in the ASP.NET framework, however they come with a few shortcomings. In this article, we will explore how to create a custom validation control in ASP.NET and provide both Server and Client Side Validation for the same. (Read more)
[By(Suprotim Agarwal) :: Date(21/10/2008)]

Building Sharepoint List Style GridView with Ajax Control Toolkit

In this article, we will implement a sharepoint list style GridView with the help of DropDownExtender control in Ajax Control Toolkit. (Read more)
[By(Satheesh Babu) :: Date(20/10/2008)]

Data Access Component - Deleting Data in C# and AJAX

This tutorial will show you how to use C# and AJAX to create a Data Access Component that will display data from a SQL database and also allow you to delete records from the database. (Read more)
[By(dotnettutorials.com) :: Date(19/10/2008)]

Using JavaScript and UpdatePanels in VB.NET

We all know that AJAX utilizes JavaScript, but what if we want to use our own JavaScript calls in conjunction with AJAX? This tutorial will show you how we can call JavaScript ourselves whilst using AJAX. We will be making use of the Alert method in JavaScript when the user clicks a button. (Read more)
[By(Ajaxtutorials.com) :: Date(18/10/2008)]

Web Voting System using AJAX, XML and LINQ in VB.NET

This tutorial will teach you how to develop a poll system that will allow any user to cast their vote for the poll, and also view the results. (Read more)
[By(vbasic.net) :: Date(17/10/2008)]

ASP.NET Client Side State Management - Control State

The article explains what is the control state and how to use it as a part of the ASP.NET client side state management. (Read more)
[By(Gil Fink) :: Date(15/10/2008)]

Building on demand Master/Detail grouping Grid with GridView and ASP.NET AJAX toolkit CollapsiblePanelExtender

Building on demand Master\Details data with GridView, CollapsiblePanelExtender and ASP.NET AJAX PageMethods (Read more)
[By(Muhammad Mosa) :: Date(14/10/2008)]

Building Custom Paging with LINQ, ListView, DataPager and ObjectDataSource

Custom paging applied using LINQ and Extension Methods. The used with ObjectDataSource, ListView and DataPager. (Read more)
[By(Muhammad Mosa) :: Date(13/10/2008)]

Building DAC with Execution Time in ASP.NET 3.5 and C#

This tutorial will show you how to build your own Data Access Component and how to retrieve the time taken to execute. C# version. (Read more)
[By(Aspnettutorials.com) :: Date(12/10/2008)]

DataTable - Adding, Modifying, Deleting, Filtering, Sorting rows & Reading/Writing from/to Xml

In this article, I am going to explain how to Add, Modify, Delete, Sort, Filter rows of the DataTable also writing data to xml as well as loading data from xml. Apart from this, I will also talk about writing/reading Schema of the DataTable. (Read more)
[By(Sheo Narayan) :: Date(11/10/2008)]

ASP.NET Client Side State Management - Query Strings

The article discuss the query strings state management technique and how to use it. (Read more)
[By(Gil Fink) :: Date(10/10/2008)]

Using UpdatePanel Triggers in C#

In this example, we will look at how we can specify different controls to refresh the whole page, and parts of the page. We will create two UpdatePanels and see how we can refresh each of them as well as refresh the whole page with the triggers. C# version. (Read more)
[By(Ajaxtutorials.com) :: Date(09/10/2008)]

Creating a Dynamic Data Web site using Scaffolding

This post explains how to create a basic Web Site that uses ASP.NET Dynamic Data. ASP.NET Dynamic Data provides the Web application scaffolding that enables you to build rich data-driven Web applications. scaffolding is mechanism that enhance the functionality of the existing ASP.NET Framework by adding the ability to dynamically display pages based on the data model of the database. (Read more)
[By(Kalyan.Bandarupalli) :: Date(04/10/2008)]

ListView Control with DropDownExtender and Menu

This article describes how to display the Context Menu on each row of the ListView Control using DropDownExtender and Menu control. (Read more)
[By(Hari Baru) :: Date(03/10/2008)]

Using jQuery with ASP.NET MVC

The Microsoft ASP.NET MVC Framework has been getting talked about more and more lately. The power and flexibility of ASP.NET MVC allows for developers to use libraries other than those include in the box. The popular JavaScript framework, jQuery, is no exception. (Read more)
[By(Robert Bazinet) :: Date(02/10/2008)]

URL Rewriting in ASP.NET using URLRewriter.Net

Learn to use search engine friendly URLs for your ASP.NET pages (Read more)
[By(Vihutuo) :: Date(28/09/2008)]

Using ASP.NET 3.5 History Control in ASP.NET 2.0

As ASP.NET 2.0 does not provide built in support for Back button functionality in AJAX Update Panel, This post will show you how to use ASP.NET 3.5 Ajax ControlToolKit History control with ASP.NET 2.0, to achieve the back button functionality in ASP.NET 2.0 (Read more)
[By(Brij Mohan) :: Date(27/09/2008)]

Using AJAX, LINQ and XML in C#

AJAX and LINQ are two of the main focuses of Microsoft right now; and no wonder - both have huge potential and power behind them. In this example, we will show how we can use AJAX coupled with LINQ and XML to create a Web Application that we can use to view stored data instantaneously, as well as add to it in the same way (Read more)
[By(Ajaxtutorials.com) :: Date(26/09/2008)]

Forms Authentication in ASP.NET with C#: Advance

This article describe how to create Roles based sccurity using Forms Authentication in easy to follow steps. (Read more)
[By(Sheo Narayan) :: Date(25/09/2008)]

MVC Preview 5 - Create Dynamic Action Links

Explains how to add new views to sample project and create dynamic action links on the data coming from database ? Also explains how to use these dynamic actions links to perform database actions. Sample Videos To Explains All these in action (Read more)
[By(Keyur Raval) :: Date(24/09/2008)]

Handling Files and Directories from your web applications.

Using C#, VB.NET, and ASP.NET to get all files of directory and subdirectory. Simply illustration of working with files and directories in ASP.NET. (Read more)
[By(Rockin J) :: Date(24/09/2008)]

Programmatically Encrypt and Decrypt Configuration Sections in web.config using ASP.NET

The ASP.NET Configuration API provides support for encrypting and decrypting configuration sections in web.config. This feature comes extremely handy when you need to hide sensitive information like passwords. In this article, we will explore how to encrypt and decrypt sections of the web.config. (Read more)
[By(Suprotim Agarwal) :: Date(19/09/2008)]

Role Based Content Rendering

Designing a web based Information Management System poses a lot of challenges to developers. One of these challenges is how to provide desired level of security security to different users with different access to an application. You often encouter situations where certain users will be allowed to update specific fields while others can only view them. It is essential to design for adequate security features in the presentation layer of your application. (Read more)
[By(Sambeet Patra) :: Date(18/09/2008)]

Model Binders in ASP.NET MVC

Hot off the presses, and new to ASP.NET MVC (Preview 5) is an awesome capability that (in my opinion) revolutionizes the way we design web applications. This feature is being touted (by me) as "the ViewState for MVC". (Read more)
[By(Timothy Khouri) :: Date(17/09/2008)]

Building On-Demand Master/Detail Grouping Grid with GridView and ASP.NET AJAX Control Toolkit CollapsiblePanelExtender

Shows how to build on demand master/detail data using GridView, the ASP.NET AJAX Control Toolkit CollapsiblePanelExtender control and ASP.NET AJAX PageMethods. (Read more)
[By(Muhammad Mosa) :: Date(16/09/2008)]

Simulate a Windows Service using ASP.NET to run scheduled jobs

Run scheduled jobs 24x7 using ASP.NET without requiring a Windows Service. (Read more)
[By(By Omar Al Zabir) :: Date(15/09/2008)]

PathInfo

ASP.NET introduces a new URI component to the equation: PathInfo. It's not very well known, possibly due to poor implementation and consequent lack of usefulness. However, it is important that you understand how it can affect you. (Read more)
[By(Nathanael Jones) :: Date(14/09/2008)]

Building ASP.NET Web Server Controls using XML and XSLT

In most cases, server controls are very useful in ASP.NET web applications since they have some valuable events (click event, data binding event, data bound event, etc) and other advanced functionality like state management, input validation, etc. In general, XSLT produces plain XML or HTML without any hassle, but if we want to create our ASP.NET server controls by using XML and XSLT then we should follow some procedures which the author has outlined in this article. After providing a brief introduction, he examines the steps involved such as preparing XML document, preparing XSLT document to transform XML data, defining server and validation controls according to XML document, parsing controls, and defining event handlers with the help of relevant code samples along with detailed analysis. (Read more)
[By(Ehsanul Haque) :: Date(13/09/2008)]

Nested GridView with TreeView Like Structure

Displaying hierarchical data is a common feature practiced by many websites. Hierarchical data can be displayed in many different ways. In this article we will learn how to display nested data using nested GridView controls. (Read more)
[By(Mohammad Azam) :: Date(12/09/2008)]

The New Controls of ASP.NET 3.5

Learn about the new controls of ASP.NET 3.5 using Visual Studio 2008. (Read more)
[By(Steve C. Orr) :: Date(11/09/2008)]

ASP.NET AJAX Development Approach Part 3

Brian Mains overviews the client portion of the ASP.NET AJAX framework. (Read more)
[By(Brian Mains) :: Date(10/09/2008)]

Create a Picture Album using ListView in ASP.NET 3.5

In this article, we will see how to create a picture album using the ListView control. We will explore the GroupTemplate of ListView and explore how we can group multiple images together in the ListView, thereby creating an album effect. (Read more)
[By(Suprotim Agarwal) :: Date(09/09/2008)]

GridView with Thumbnail Images – Part 2

In Part 1, we have seen how to display the full image in a popup window when the user clicks the thumbnail image displayed in the GridView. In Part 2 we will display the full image but inside a DIV tag on the same page instead of a popup, which gives a better user experience. (Read more)
[By(Satheesh Babu) :: Date(08/09/2008)]

How to pass a User Control value to the Page

In the process of developing an application, there are situations when you need to pass a particular value from user control to its calling page. This article describes solution to that type of problem in an easy to follow steps. (Read more)
[By(Sheo Narayan) :: Date(07/09/2008)]

StyleCop Tutorial

StyleCop is a source analysis tool for C#. It can be used for analyzing source code as opposed to compiled assemblies which is the area for FxCop. StyleCop is currently in version 4.2 this tutorial will show you how to use it. (Read more)
[By(Deepak Kapoor) :: Date(06/09/2008)]

Using Extension Methods

How often do you want to modify existing classes to have extra methods? Quite often. Right? When you have source code of the classes under consideration at your hand then things are easy. You probably just add the extra methods to those classes. What if you don't have source code? Well. In such cases one approach is to inherit the existing classes and add extra methods to the child classes. However, this way may not be always correct and possible in terms of your application design and OO principles. Luckily, C# offers a quick way to extend your class functionality through a feature known as Extension Methods. Extension methods allow you to extend existing types without inheriting them. This article is going to throw some light on this handy feature. (Read more)
[By(Bipin Joshi) :: Date(05/09/2008)]

New Image Generator control in ASP.Net 3.5

Microsoft has released a new control called ASP.NET Generated Image control to display an image in an ASP.Net page. This article will give you a kick start on this control and some of its features. (Read more)
[By(Satheesh babu) :: Date(04/09/2008)]

Cookies in ASP.NET

Explains how to create, read and delete a cookie in ASP.NET, how to use HttpCookie class, what are web browser's limitations, best practices and security issues when use cookies in ASP.NET. (Read more)
[By(Richard Bean) :: Date(03/09/2008)]

ASP.NET MVC Preview 4 - Custom Login

Explains how to implement custom login functionality in a sample application created with MVC Preview 4. (Read more)
[By(Keyur) :: Date(02/09/2008)]

SEO-Friendly Pagination Using the DataPager Control

This article shows how to paginate (SEO friendly) a ListView using the DataPager control without enabling ViewState. (Read more)
[By(Sheo Narayan) :: Date(01/09/2008)]

Note: For faster response please use Forums >> for your questions instead of the comments area! (Admin)