(Advertisment)
German Wear Discount Shop - Click Here
[Dot]Net-Friends
Skip Navigation Links
Home
Latest
Fast Code
Articles
Tutorials
Online Resources
Forums
Login   | Hi, Guest



Latest Articles at ASP .NET
 

Accessing and Updating Data in ASP.NET: Filtering Data Using a CheckBoxList

With a little bit of effort it is possible to filter data based on the end user's selections in a CheckBoxList control. This article starts with a look at how to get SQL to filter data based on a user-supplied, comma-delimited list of values. Next, it shows how to programmatically construct a comma-delimited list that represents the selected CheckBoxList values and pass that list into the SQL query. Finally, we'll explore creating a custom parameter control to handle this logic declaratively. (Read more)
[By(Scott Mitchell) :: Date(09/03/2010)]

Using jQuery To Hijack ASP.NET MVC Form Posts

The following article demonstrates how to hijack ASP.NET MVC form posts using jQuery (Read more)
[By(Malcolm Sheridan) :: Date(08/03/2010)]

Using ASP.NET 3.5's ListView and DataPager Controls: The Ultimate DataPager Interface

This article shows how to use ASP.NET Routing with the ListView and DataPager controls to create the ultimate paging interface. (Read more)
[By(Scott Mitchell) :: Date(07/03/2010)]

SEO For ASP.NET Web Site

There are more than a hundred factors search engines use to rank pages. This tutorial explains the most important factors from the view of an ASP.NET developer. (Read more)
[By(Richard Bean) :: Date(06/03/2010)]

Introduction to Dependency Injection Using StructureMap

Dependency injection is a process of supplying an external dependency to a component. In this article we will learn how to use StructureMap as our dependency injection container. (Read more)
[By(Mohammad Azam) :: Date(05/03/2010)]

Integrating Twitter Into An ASP.NET Website

This article shows how to integrate Twitter with an ASP.NET website using the Twitterizer library, which is a free, open-source .NET library for working with the Twitter API. Specifically, this article shows how to retrieve your latest tweets and how to post a tweet using Twitterizer. (Read more)
[By(Scott Mitchell) :: Date(04/03/2010)]

URL Routing in ASP.NET 4.0

ASP.NET 4.0 has greatly simplified ASP.NET Routing for Web Form applications by adding a number of classes and helper methods that can be used to encapsulate the aforementioned complexity. With ASP.NET 4.0 it's easier to define the routing rules and there's no need to create a custom route handling class. This article details these enhancements. (Read more)
[By(Scott Mitchell) :: Date(03/03/2010)]

Using C#, ASP.NET, and ADO.NET To Develop A Multi-Tier App From Start To Finish

In this article I will show you how to create a simple multi-tier (otherwise known as n-tier) application using ASP.NET. (Read more)
[By(Dave Verschleiser) :: Date(02/03/2010)]

How to Create a Custom Transform in UrlRewriter.net

At first glance URL rewriting can be a daunting task, but today we will see that it doesn't have to be. Join me as I take you on a tour of the UrlRewriter.net library from theory to implementation. (Read more)
[By(rtpHarry) :: Date(01/03/2010)]

The Kayak Framework: An easy way to speak HTTP with .NET

Kayak is a lightweight HTTP server for the CLR, and the Kayak Framework is a utility for mapping HTTP requests to C# method invocations. With Kayak, you can skip the bulk, hassle, and overhead of IIS and ASP.NET. Kayak enables you to do more with less syntax, and is easy to configure to work in any way you care to dream up. (Read more)
[By(Benjamin Van der Veen) :: Date(28/02/2010)]

.NET LINQ from Scratch

Wouldn't it be great if the method of access was the same for all kind of data sources? Well, we are in luck because, as of the release of C# 3.0 and the .NET 3.5 Framework, LINQ has come to change the game forever. (Read more)
[By(Arman Mirkazemi) :: Date(27/02/2010)]

A Look at the GridView's New Sorting Styles in ASP.NET 4.0

In ASP.NET 4.0, Microsoft added four new style properties to the GridView control: SortedAscendingHeaderStyle, SortedAscendingCellStyle, SortedDescendingHeaderStyle, and SortedDescendingCellStyle. This article shows how to use these four new properties to style the sorted column. (Read more)
[By(Scott Mitchell) :: Date(26/02/2010)]

Performance: Using dynamic code to copy property values of two objects

How to use reflection carefully and how to boost up code performance using dynamically generated and compiled code. (Read more)
[By(Gunnar Peipman) :: Date(25/02/2010)]

Creating Multiple Choice Exam Application Using ASP.NET MVC Framework

Several months ago I wrote a multiple choice exam application using the WebForms framework. The idea revolved around displaying questions and choices to the user and giving them the ability to select the correct answer. Although the idea was simple but the limited control over the HTML markup made it difficult to implement. In this article we are going to show how easy it is to implement the multiple choice exam application using ASP.NET MVC Framework. (Read more)
[By(Mohammad Azam) :: Date(24/02/2010)]

Asp.Net YouTube Custom Server Control

Recently in one of my project I need to show YouTube videos in various places in my app. So I decided to write a custom server control to do this functionality. This is fairly simple to do it, but it may be useful when you are using in multiple places or adding URL’s from code behind. (Read more)
[By(Deepu Madhusoodanan) :: Date(23/02/2010)]

Web Page Loading in Steps - ASP.NET Solution

Using AJAX, you can split the load of the page into multiple phases in a very elegant way. Basically in the first HTTP request, you return the data undemanding to take time to be prepared and then using AJAX you can ask for the rest of the content. (Read more)
[By(Petr Pechovic) :: Date(22/02/2010)]

Master-Detail Views with the ASP.NET Ajax Library

When you think of data-driven Web pages, most of the time what you really have in mind is a master-detail view of some cross-related data. Dino builds an example with ASP.NET AJAX 4 and jQuery. (Read more)
[By(Dino Esposito) :: Date(21/02/2010)]

Consuming WCF / ASMX / REST Service Using jQuery

This step by step tutorial demonstrates how to consume WCF, ASMX, and REST service from a web application using jQuery. 7 different ways of exposing and consuming service is discussed in this article. (Read more)
[By(Sridhar Subramanian) :: Date(20/02/2010)]

ASP.NET MVC Uploading and Downloading Files

If you come to ASP.NET MVC from a purely ASP.NET Web Forms background, one of the first things you are likely to notice is that all those nice easy Server Controls have disappeared. One of those is the FileUpload, and its absence seems to cause a few problems. This article looks at how to upload files to the server in an MVC world, and how to get them back from the server to the user again. (Read more)
[By(Mike Brind) :: Date(19/02/2010)]

Ultimate Automatic Stylesheet Combining and Minification

This article describes an add-in for Visual Studio which will combine and minify your CSS stylesheets. (Read more)
[By(Wayne Brantley) :: Date(18/02/2010)]

ASP.NET MVC - Prevent Image Leeching with a Custom RouteHandler

Have you ever noticed an unusually high number of requests in your web server log files for image files? It may well be that someone is linking to your images from their own site, and basically stealing your bandwidth. Here's how to implement a custom RouteHandler within an ASP.NET MVC application to prevent people from leeching your images. (Read more)
[By(Mike Brind) :: Date(17/02/2010)]

Redirect from Http to Https in ASP.NET

There are a few ways to redirect from http to https in asp.net, but I wanted a somewhat simple and efficient method. After researching a bit, I could add some code to global.asax, or make my own custom configuration section in the web.config. Well I chose to do a little variation of a "custom" section in the web.config. (Read more)
[By(John Mendez) :: Date(16/02/2010)]

Reading the ProviderUserKey when using the SqlMembershipProvider

The ProviderUserKey gives access to a unique identifier for each of the members in your membership data store. If you're doing a large amount of lookups or want to cross link to another table you will find this technique will give you better performance than using the UserName property. (Read more)
[By(rtpHarry) :: Date(15/02/2010)]

Creating Custom Pages in a ASP.Net Dynamic Data Website

In this article, we will see how to build a custom page for a particular database object while the other database objects can still use the default templates. (Read more)
[By(Satheesh Babu) :: Date(11/02/2010)]

A ‘Simple’ Asp.Net Custom Server Control

An ASP.NET Server control that displays a list of files from a directory as hyperlinks. (Read more)
[By(Steve Wellens) :: Date(10/02/2010)]

Sparse Thoughts on ASP.NET MVC Controllers

In this article, Dino Esposito focuses on the core part of the ASP.NET MVC framework - the controller - and shares some considerations about the ideal structure it should have as a class and its intended role. (Read more)
[By(Dino Esposito) :: Date(09/02/2010)]

Enterprise Library: Exception Handling Application Block

This article discusses Exception Handling application block configuration to implement consistend exception handling within ASP.NET web applications. (Read more)
[By(sukumar raju) :: Date(08/02/2010)]

Using Virtual Earth Control with a Web Service

I had created a Google Maps web page that loaded data from a database using web services (Denver Traffic Cameras). This post is a tutorial on how to create such a page. (Read more)
[By(Raj M. Rao) :: Date(07/02/2010)]

Performing Validation in an ASP.NET MVC Application

The ASP.NET MVC framework provides multiple ways to validate the user input. In this article we are going to demonstrate how to perform validation in an ASP.NET application using Controller action, IDataErrorInfo and DataAnnotations methods. (Read more)
[By(Mohammad Azam) :: Date(06/02/2010)]

Developing A Facebook FBML Canvas App In ASP.NET

This article will demonstrate the development of an FBML Facebook application in ASP.NET using the Facebook Development Toolkit. We will create a simple application that accesses the user's profile and displays a list of the user's Facebook friends and their profile photos in a Facebook "Application Invite" container. (Read more)
[By(Dave Verschleiser) :: Date(05/02/2010)]

The CallBack Web Controls

In this article, I present another aspect of communication in ASP.Net 2.0, named "CallBack” and how it can be used for a web application asp.net soft light and especially performant. For this I created a set of web controls based on the "CallBack" not on "PostBack" but that works exactly like the standard controls of ASP.Net 2.0 (Read more)
[By(Kadaoui El Mehdi) :: Date(04/02/2010)]

CRUD operations with ASP.NET MVC

This is a very simple tutorial that walks you through the necessary steps to create an ASP.NET MVC application with Create, Read, Update and Delete (CRUD) capabilities. This sample application also uses Linq to SQL and takes full advantage of data scaffolding (Read more)
[By(Ricardo D. Sanchez) :: Date(03/02/2010)]

Drop-down Lists and ASP.NET MVC

A look at essential pieces of knowledge you should have when working with view models and drop-down lists in the ASP.NET MVC framework. (Read more)
[By(Scott Allen) :: Date(02/02/2010)]

Simple Task Scheduling using Global.asax

A frequent requirement for ASP.NET developers is to schedule tasks at regular intervals. This can include site maintenance tasks, like cleaning up old files, emailing newsletters on a schedule etc. This article examines one easy option for managing tasks like these without having to configure external tools, and discusses a couple of alternatives. (Read more)
[By(Mike Brind) :: Date(02/02/2010)]

Rendering ASP.NET Script References into the Html Header

ASP.NET natively supports script embedding only into the body of the HTML document which is limited in many ways if you need more control over how scripts load under program control. In this post I'll show one of my components that allows embedding scripts and script references in the header of the document as well as many useful script embedding features for ASP.NET. (Read more)
[By(Rick Strahl) :: Date(31/01/2010)]

Create an ASP.NET TextBox Watermark Effect using jQuery

This short article demonstrates how to create a watermark effect on your TextBox and display instructions to users, without taking up screen space (Read more)
[By(Suprotim Agarwal) :: Date(30/01/2010)]

Creating a Stock Widget in ASP.NET MVC Application

Widgets have gained popularity over the years. There are many websites that allows the user to add widgets on their home page. In this article we will create a simple Stock widget for our ASP.NET application using the RenderAction method (Read more)
[By(Mohammad Azam) :: Date(29/01/2010)]

Looking Ahead to ASP.NET 4.0

When Visual Studio 2010 and .NET 4 arrive this year, ASP.NET developers will have two mature frameworks for building Web applications: ASP.NET Web Forms and ASP.NET MVC. This article highlights some of the important new features for these two frameworks. (Read more)
[By(Scott Allen) :: Date(28/01/2010)]

Text Template Transformation Toolkit and ASP.NET MVC

The Visual Studio T4 code generation engine lets you parse an input file and transform it into an output file. We give you a basic introduction to T4 templates and show you how ASP.NET MVC uses this technology. (Read more)
[By(Scott Allen) :: Date(27/01/2010)]

Adding Facebook Share Functionality to an ASP.NET Website with a Master Page

This article demonstrates how to add Facebook Share functionality to your ASP.NET website using a Master Page in ASP.NET and C#. (Read more)
[By(Dave Verschleiser) :: Date(26/01/2010)]

Setting Up IoC in ASP.NET MVC using Castle Windsor

This post gathers information needed to setting up Inversion of Control (IoC) in an ASP.NET MVC application using Castle Windsor. (Read more)
[By(Ali Bastani) :: Date(25/01/2010)]

IIS vs. ASP.NET Rewriting

A solution to use ASP.NET URL rewriting with virtual hosting and old IIS versions. (Read more)
[By(Alexandr Sergeevich Ilyin) :: Date(24/01/2010)]

Tracking access to media resources with HttpHandlers

This article will discuss what it takes to create an HttpHandler that can keep track of new and existing resources and how many people access those resources. (Read more)
[By(Andrew Siemer) :: Date(23/01/2010)]

Cascading DropDownLists With ASP.NET and jQuery

The following article demonstrates how to use ASP.NET and jQuery to create cascading drop-down lists. (Read more)
[By(Malcolm Sheridan) :: Date(22/01/2010)]

A Popup Insert control for Dynamic Data

The Popup Control can be used for used for any Web Forms application but for this sample we will use it to give ForeignKey_Edit FieldTemplates a popup Insert page. This will allow you to insert a new item in to the ForeignKeyColumns ParentTable and then set the ForeignKey DropdownList to the new item. (Read more)
[By(Stephen Naughton) :: Date(21/01/2010)]

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 2

In this two-part series, you will learn how to a typical front end of an E-commerce system using the Microsoft ASP.NET MVC 1.0 framework. In the first part, we focused upon system design, functionality design, architecture design, and database design. In this second part, we discuss the detailed coding-related aspects of the application. (Read more)
[By(Xianzhong Zhu) :: Date(20/01/2010)]

.NET Culture and SQL Server

Care must be taken when ASP.NET applications have a CurrentThread.CurrentCulture setting other than the SQL Server Login Language setting. Reading, writing, and converting data can have incorrect or unwanted results. With very little work your routines can be made more robust. (Read more)
[By(Steven Burch) :: Date(19/01/2010)]

Supporting a Printer-Friendly Page Button (Part I)

Peter investigates three solutions for getting junk off your page when the user wants to print a copy. (Read more)
[By(Peter Vogel) :: Date(18/01/2010)]

Populating Hierarchical Data Using Model Binders in ASP.NET MVC Application

ASP.NET MVC exposes the model binder feature which allows the developer to bind the data to a particular model. This is a very powerful feature since now the framework can correctly populate the model from the form values which can be persisted, updated based on the required action. In this article we will demonstrate how to use model binders to populate simple objects as well as hierarchical objects. (Read more)
[By(Mohammad Azam) :: Date(17/01/2010)]

Accessing a Web Service Using Sys.Net.Webrequest

In this article we are going to see how to access a web service from Sys.Net.WebRequest which finds the country by IP address. (Read more)
[By(Anup Hosur) :: Date(16/01/2010)]

Search Engine Friendly URL's Using Routing in ASP.Net 3.5

Routing is a technique which enables us to use descriptive, search engine and human friendly URLs for an ASP.Net application to access a resource. In this article, we will implement a simple routing mechanism in ASP.Net 3.5. (Read more)
[By(Satheesh Babu) :: Date(15/01/2010)]

.Net Remoting Made Easy

The subject of .Net remoting can be very complex as there are several different ways to approach it. In this article I use a configuration which addresses the majority of situations you are likely to encounter, and I strip away everything that’s unnecessary for this configuration. (Read more)
[By(Dave Verschleiser) :: Date(14/01/2010)]

Data Driven Application Development using WCF and Silverlight 3.0 User Controls

In this article, we will see how to create Silverlight 3.0 user controls and load these controls on demand for performing DB operations like insert, update and delete (Read more)
[By(Mahesh Sabnis) :: Date(13/01/2010)]

Helper Mailer class for template-based e-mails with embedded images

This article shows a way to code a reusable helper class to: create a MailMessage, set its body by eventually using a parameterized template control, automatically embed images as LinkedResources, and send the MailMessage using the desired SMTP server. (Read more)
[By(Gianni Tropiano) :: Date(12/01/2010)]

Adding Multiple Nested Data in ASP.NET MVC Application

In one of the last articles we discussed how to populate hierarchical data using Model Binders in ASP.NET MVC Application. In this article we are dynamically add the items to the DOM tree which will result in adding new items to our C# model object. (Read more)
[By(Mohammad Azam) :: Date(11/01/2010)]

ASP NET Horizontal Menu Control

A few weeks ago, I was working on an ASP.NET web application and need a simple horizontal menu with submenu. I decided to use ASP.NET Menu control, just drag and drop the control on to the page. Simple enough, but the control does not provide access key and target window support on menu item. I have put together a tutorial on how to: 1. Include access key attribute 2. Include target attribute 3. Include a Site Map Path (Read more)
[By(Bryian Tan) :: Date(10/01/2010)]

ASP.NET MVC Mobile Detection & Redirection

Approaches to detect mobile device using ASP.NET/MVC and redirecting to a page optimized for a mobile browser. (Read more)
[By(Amit M Patel) :: Date(09/01/2010)]

LINQ Explained

This is the fourth part of my on-going series on Language Integrated Query or LINQ. I have been away from this series for a while. In the second and third posts, we had an overview of the features which are important to understand to have a full grasp of LINQ. In this post, we will have a detailed look at LINQ syntax and explore its different features. (Read more)
[By(Kashif Ahmad) :: Date(08/01/2010)]

Making Sense of ASP.NET Paths

ASP.NET includes a plethora of functions and utilities to retrieve information about the current request and paths in general. So much so that it's often hard to remember exactly which path property or method you are actually looking for. This article summarizes many of the paths and path related operations that are available in ASP.NET. (Read more)
[By(Rick Strahl) :: Date(07/01/2010)]

Implementing ImageRadioButtonList Control in ASP.NET

ASP.NET webforms RadioButtonList control enables the developers to display mutually exclusive radio buttons. A common requirement for web applications is to display images along with the radio buttons. Unfortunately, the default implementation of the RadioButtonList does not have any support for the images. In this article we are going to implement a custom control which will add the functionality of images to the RadioButtonList control. (Read more)
[By(Mohammad Azam) :: Date(06/01/2010)]

Adding Facebook Share Functionality To An ASP.NET Web Site With A Master Page

This article assumes the reader has experience developing web sites using ASP.NET, specifically using Master Pages. It also assumes a familiarity with Facebook. All sample code is in C#. After reading this article, you should be able to integrate Facebook Share with an ASP.NET web site, whether or not it contains a Master Page. I’ve chosen to illustrate this using a Master Page because it’s a little more involved, and once you can do it with a Master Page, you should be able to do it without one as well. (Read more)
[By(Dave Verschleiser) :: Date(05/01/2010)]

Supporting Multiple Languages and Cultures

ASP.NET can simplify the difficult task of internationalizing your Web pages. Peter Vogel shows you how. (Read more)
[By(Peter Vogel) :: Date(04/01/2010)]

VS2010 Beta 2 – Validation ($SCHEMA$): Element is not supported

If you have adopted Beta 2 of Visual Studio 2010 then you might have spotted a large number of green squigglies underneath the tags in your markup. Read on to find a fix for "Validation ($SCHEMA$): Element 'div' is not supported". (Read more)
[By(rtpHarry) :: Date(03/01/2010)]

Creating ASP.NET MVC Helpers

In the last article we introduced the concepts behind the ASP.NET MVC Helpers and how they help to facilitate when developing ASP.NET MVC application. In this article we are going to see different ways of implementing ASP.NET MVC Helpers. (Read more)
[By(Mohammad Azam) :: Date(02/01/2010)]

Capturing and Transforming ASP.NET Output with Response.Filter

Response.Filter provides the ability to hook into the Response output stream to capture or manipulate the response ASP.NET sends back to the Web Server. Creating a Response.Filter involves creating a Stream subclass to capture the output and modifying it as content is output to the stream. To simplify this process,this article provides a generic ResponseFilterStream class that provides an easy to use event based and reusable class to capture and transform Response output in a variety of ways without having to create a new Stream implementation for each Filter. (Read more)
[By(Rick Strahl) :: Date(01/01/2010)]

Server Side Validation With ASP.NET MVC And Data Annotations

The following article demonstrates how to perform server side validation using ASP.NET MVC and data annotations. (Read more)
[By(Malcolm Sheridan) :: Date(31/12/2009)]

Looking Ahead to ASP.NET 4.0

When Visual Studio 2010 and .NET 4 arrive next year, ASP.NET developers will have two mature frameworks for building Web applications: ASP.NET Web Forms and ASP.NET MVC. This article highlights some of the important new features for these two frameworks. (Read more)
[By(K. Scott Allen) :: Date(30/12/2009)]

Guidelines for consistent exception handling

Exception handling is also a major part of an application design and we should give it the necessary thinking time that it deserves. In the following article, I hopefully try to put some light on good practices in throwing, catching and designing methods to deal with exceptions. (Read more)
[By(Samir Bellouti) :: Date(29/12/2009)]

7 Tips for Loading JavaScript Rich Web 2.0-like Sites Significantly Faster

Learn how to stub JavaCcript classes, load functions in classes on demand, render content from top to bottom, load JavaScript on demand, use Doloto to break scripts into small chunks. Techniques that are essential for Web 2.0 startups to succeed. (Read more)
[By(Omar AL Zabir) :: Date(28/12/2009)]

Databinding the GridView Without Using a Table

If you want to let your users edit repeated rows of data, you can use the GridView -- even if your data isn't in a table. You need to do pick the right design for your data but you can enable all of the functionality of the GridView for data held in memory. (Read more)
[By(Peter Vogel) :: Date(27/12/2009)]

Sort the Items of an ASP.NET DropDownList using jQuery

This short article demonstrates how to sort the items of an ASP.NET DropDownList using jQuery (Read more)
[By(Suprotim Agarwal) :: Date(26/12/2009)]

Exploring IIS with ASP.NET

This is an "All in One" article for IIS, to help beginners to know what IIS is, how to install IIS, how to deploy sites on IIS, creation of Application pool, web garden, etc. (Read more)
[By(Abhijit Jana) :: Date(25/12/2009)]

Suppressing the Back Button: Just Say No

Peter deals with all the people who want to disable the Back button. First, he tells them to stop asking but (finally) breaks down and suggests a solution. (Read more)
[By(Peter Vogel) :: Date(24/12/2009)]

Implementing KeyBoard Shortcuts on an ASP.NET Hyperlink Control using jQuery

Popular Web apps like Windows Live Mail and Gmail feature keyboard shortcuts, which help you save time by executing common operations using the keyboard, without having to switch between the keyboard and mouse. This article shows you how to implement keyboard shortcuts on ASP.NET Hyperlink controls using jQuery. (Read more)
[By(Suprotim Agarwal) :: Date(23/12/2009)]

Easily Extracting Links from a Snippet of HTML with HtmlAgilityPack

The HtmlAgilityPack is a powerful library that makes screen scraping in asp.net a breeze. This is the second in a continuing series where I demonstrate a way for you to extract all the links from a snippet of HTML. (Read more)
[By(rtpHarry) :: Date(22/12/2009)]

Creating a Free-Standing ASP.NET Pager Web Control

Although there's decent Pager support in ASP.NET web controls the way paging works is inconsistent and not very generic. In this article I cover usage and implementation of a custom Pager control that is independent of other WebControls or DataSources on the page and provides an efficient mechanism for querying data as well as providing SEO friendly paging links. (Read more)
[By(Rick Strahl) :: Date(21/12/2009)]

Populating HTML Tables Using PageMethods/AJAX

This article describes how to use ASP.NET AJAX PageMethods to fetch data from the database and populate HTML tables as DataGrids. CRUD with HTML table using PageMethods. (Read more)
[By(Gokulnath Murugesan) :: Date(20/12/2009)]

Dynamically Generate Complex Pages with the MultiView

The MultiView control allows you to swap sets of controls on and off the page. But the MultiView control also makes it easier for you to generate new page content and add it at run time. (Read more)
[By(Peter Vogel) :: Date(19/12/2009)]

Dynamic Data Retrieval

You can't always make all of your data retrieval decisions at design time -- sometimes you have to wait for the user to tell you what data to get. Peter shows you how to work with a DataSource to retrieve data dynamically at runtime. (Read more)
[By(Peter Vogel) :: Date(18/12/2009)]

Understanding Partial Views in ASP.NET MVC Application

In ASP.NET WebForms, UserControls were used to break the application into smaller pieces. Each piece represented an important part of the application. In ASP.NET MVC application you can achieve the same effect using RenderPartial and RenderAction methods. In this article we are going to demonstrate how to use RenderPartial to construct and use partial views. (Read more)
[By(Mohammad Azam) :: Date(17/12/2009)]

Using ASP.NET MVC and Ajax to Check Name Availability

This article demonstrates how to use ASP.NET MVC Ajax and JQuery to create a MVC User Control that checks the availability of a name. For example you may want to create a URL route that includes project names as parameters and you want to make sure those names are unique. (Read more)
[By(César Intriago) :: Date(16/12/2009)]

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 1

In this two-part series, you will learn how to build a typical front end of an E-commerce system using the great Microsoft ASP.NET MVC 1.0 framework. In the first part, we will focus upon the following points: system design, functionality design, architecture design, and database design. (Read more)
[By(Xianzhong Zhu) :: Date(15/12/2009)]

RssResult - An ASP.NET MVC RSS ActionResult

Guide to creating an RSS ActionResult for returning RSS feeds from your controllers in ASP.NET MVC (Read more)
[By(William Duffy) :: Date(14/12/2009)]

Passing JavaScript Objects to the CLR World

Every now and then we need to pass information from JavaScript to the CLR world using Ajax. There are number of methods for performing this action. In this article we will see different ways of passing JavaScript data to the CLR world. (Read more)
[By(Mohammad Azam) :: Date(13/12/2009)]

5 Simple Steps to Execute Unit Testing Using NUnit

In this tutorial we will try to understand how we can do unit testing using the Nunit framework in five simple steps. (Read more)
[By(Shivprasad Koirala) :: Date(11/12/2009)]

Microsoft AJAX Content Delivery Network (CDN)

A CDN is a Content Delivery Network which is composed of multiple servers strategically placed across the globe. In the case of the Microsoft AJAX CDN servers, the jQuery and ASP.NET AJAX libraries are cached across multiple web-sites around the world and they are available to you now. If your website loads these AJAX libraries from the Microsoft AJAX CDN servers, your AJAX enabled pages will load faster than when loaded from your own server. (Read more)
[By(Ricardo D. Sanchez) :: Date(10/12/2009)]

Installing the Spark View Engine into ASP.NET MVC 2 Preview 2

Learn how to integrate the Spark View Engine into a standard ASP.NET MVC 2 application (Read more)
[By(Andrew Siemer) :: Date(09/12/2009)]

Search and Filter Items of an ASP.NET DropDownList using jQuery

In this article, I will demonstrate how to search and filter items of an ASP.NET DropDownList using jQuery (Read more)
[By(Suprotim Agarwal) :: Date(08/12/2009)]

Ajax with Postback Ritalin

Recently I noticed a simple and nice control giving more functionality to partial postback, it is Postback Ritalin. This is built on top of ASP.NET Ajax extensions and offers a nice solution to a common problem i.e. disabling button during partial postbacks. (Read more)
[By(Rohit Sinha) :: Date(07/12/2009)]

Building N-Tier Apps with EF4

This article looks at some features coming in the second release of the Entity Framework (EF4) and how you use them to implement the Self-Tracking Entities and Data Transfer Objects (DTOs) n-tier patterns. (Read more)
[By(Daniel Simmons) :: Date(06/12/2009)]

Dynamic Meta Description and Keyword Tags for Your MasterPages

Take a look at a technique for dynamically inserting meta tags into your master pages. By taking control of the head tag and inserting your own HtmlMeta you can easily customise these tags. (Read more)
[By(rtpHarry) :: Date(05/12/2009)]

What’s The First Thing To Learn About ASP.NET MVC?

If you are an ASP.NET Web Forms programmer making the switch to ASP.NET MVC – what’s the first thing you should learn? (Read more)
[By(Scott Allen) :: Date(04/12/2009)]

Simple File Download Protection with ASP.NET

When it comes to protecting files from unauthorised downloading, the vast majority of articles offer solutions that involve mapping common file types (.pdf, .txt, .doc etc) to ASP.NET within Internet Information Services. However, often in a shared hosting environment, you don't have access to IIS and the hosting company will not agree to providing such mappings for you, so what do you do? (Read more)
[By(Mike Brind) :: Date(03/12/2009)]

Working With Client ID In ASP.NET 4

ASP.NET 4 allows developers to customize Client ID which gets generated by ASP.NET. In this article we will look at different ways to work with this new feature of ASP.NET 4. (Read more)
[By(Deepak Kapoor) :: Date(02/12/2009)]

A Better Way to Reference Your Wizard Steps Using Named Steps

rtpHarry walks you though a better way to reference your wizard steps using named steps. By decoupling your steps from the index count you will avoid code smells creeping into your application which can make your code fragile when changed. (Read more)
[By(rtpHarry) :: Date(01/12/2009)]

Displaying Google Analytics Data in ASP.NET

If you have a Google Analytics account, you can use the Data Export API provided by Google to access your visitor stats, and retrieve them for use elsewhere. Here's how to display some stats in ASP.NET. (Read more)
[By(Mike Brind) :: Date(30/11/2009)]

Customizing ASP.NET MVC 2 - Metadata and Validation

In this article, you will learn about two major extensibility points of ASP.NET MVC 2, the ModelMetadataProvider and the ModelValidatorProvider. These two APIs control how templates are rendered, as well as server-side & client side validation of your model objects. (Read more)
[By(Ben Scheirman) :: Date(29/11/2009)]

How To Consume Web Services Using AJAX and ASP.NET 3.5

The article covers the use of AJAX to consume web services in ASP.NET 3.5. It delves into both client-side network callbacks and server-side ASP.NET controls, and helps the reader to determine which method is best suited for his or her application. It includes code samples as well. (Read more)
[By(Dave Verschleiser) :: Date(28/11/2009)]

Resetting the Page Index in a ListView

Resetting paging in a GridView is pretty easy, but that isn't the case for a ListView. There's actually no such property as PageIndex with ListView, so we need to dig into the internals of the DataPager to perform this common task. (Read more)
[By(Lee Dumond) :: Date(27/11/2009)]

Introduction to ASP.NET HTML Helpers

In this article we will introduce the concept of HTML helpers and how they can help the developer to speed up the development for an ASP.NET MVC application. (Read more)
[By(Mohammad Azam) :: Date(26/11/2009)]

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