If you find this article useful, consider making a small donation to show your support for this web site and its content.
DiscountASP
AboutMe
About me:
Hi. My name is Farooq Kaiser and I'm a software developer from Toronto, Canada.

Custom Sorting with Jquery UI

by Farooq Kaiser 19. September 2009 06:20
In this article, i will examine how to build custom sorting Using Jquery UI. The jQuery UI Sortable plugin makes selected elements sortable by dragging with the mouse. Please see here for more details. In my demo application i will create an XML file to store the custom settings that will hold the... [More]

Currently rated 3.0 by 15 people

  • Currently 3/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , , ,

.NET | asp.net | C# | XML

Localizing ASP.NET MVC

by Farooq Kaiser 6. September 2009 13:23
Localization is the process of customizing your application for a given culture and locale. The .NET framework offers the following namespaces and classes to facilitate the localization. System.Globalization (The System.Globalization namespace contains classes that define culture-related in... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

.NET | asp.net | C#

How to improve the performance of ASP.NET MVC web application

by Farooq Kaiser 30. August 2009 06:07
In this article, i will examine how you can improve the performance of an ASP.NET MVC application by taking advantage of the following components. Implementing Caching Implementing HTTP Compression Implementing JQuery UI library with Google Hosted Ajax Libraries By combining script... [More]

Currently rated 4.5 by 2 people

  • Currently 4.5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , , ,

.NET | asp.net | C# | Google

JQuery AJAX with ASP.Net MVC

by Farooq Kaiser 26. August 2009 15:15
The JQuery has following methods that can be used to perform Ajax requests: ajax() - Load a remote page using an HTTP request. This is jQuery's low-level AJAX implementation. load() - Load HTML from a remote file and inject it into the DOM. get()  - Load a remote page using a... [More]

Currently rated 4.7 by 3 people

  • Currently 4.666667/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , ,

.NET | asp.net | C#

Displaying Jquery Progress using ASP.NET MVC with Ajax

by Farooq Kaiser 24. August 2009 15:57
JQuery is a lightweight JavaScript library and can be downloaded from http://www.jquery.com. The jQuery library is also included in the Scripts folder of the Visual Studio ASP.NET MVC template. You can increase the performance by using google hosted AJAX Libraries. Google hosted AJAX Libraries c... [More]

Currently rated 3.0 by 2 people

  • Currently 3/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

.NET | asp.net | C#

Building currency convertor using ASP.NET MVC with Ajax

by Farooq Kaiser 20. August 2009 15:58
ASP.NET AJAX enables a Web application to retrieve data from the server asynchronously and to refresh parts of the existing page. This improves the user experience by making the Web application more responsive and you to create amazing Web 2.0 applications to delight your users. In this article, I... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

.NET | asp.net | C#

Form validation with ASP.NET MVC using IDataErrorInfo Interface

by Farooq Kaiser 13. August 2009 01:36
As I already shown in my previous article Form validation with ASP.NET MVC. In this article, I will explore an alternative method of implementing validation logic. I will show you how to perform validation by using the IDataErrorInfo interface. public interface IDataErrorInfo { ... [More]

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

.NET | asp.net | C#

Entity Framework with ASP.NET MVC

by Farooq Kaiser 11. August 2009 02:54
In this article, I will explore entity framework with ASP.NET MVC. We will modify  Form validation sample that will access data layer using entity framework. We will create the following table in local database using SQL express. CREATE TABLE [dbo].[tblComment]( ... [More]

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

.NET | asp.net

Handling Unknown Actions in ASP.NET MVC

by Farooq Kaiser 5. August 2009 03:57
In this article, I will explore Handling Unknown Actions. A Controller.HandleUnknownAction Method gets called when a controller cannot find an action method that matches a browser request. I will implement the following method in my previous article Implementing HTTP File Upload with ASP.NET MVC. ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

.NET | asp.net | C#

Creating HTML Helpers with Extension Methods in ASP.NET MVC framework

by Farooq Kaiser 19. July 2009 10:28
In last article, I explored Custom HTML Helpers by creating a static method that returns a string. In this article, I will explore HTML Helpers with Extension Methods. The HtmlHelper class provides a set of helper methods that generate plain HTML and return the result as a string. The extensions a... [More]

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

.NET | asp.net

Creating Custom HTML Helpers in ASP.NET MVC framework

by Farooq Kaiser 16. July 2009 04:00
In this article, I will explore how you can create custom HTML Helpers that you can use within your MVC views. You use HTML helpers in a view to render HTML content. An HTML helper, in most cases, is just a method that returns a string. The ASP.NET MVC framework includes a standard set of helper... [More]

Currently rated 4.7 by 3 people

  • Currently 4.666667/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

asp.net | C#

Form validation with ASP.NET MVC

by Farooq Kaiser 12. July 2009 02:53
This topic shows you the MVC features that support Form validation. When a user submits a form, the form data is passed to a controller action method by using the ViewDataDictionary collection. The ViewDataDictionary has a ModelState property that contains a collection of ModelState objects. For... [More]

Currently rated 3.0 by 5 people

  • Currently 3/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

asp.net | C#

Consuming RSS Feed in MVC ASP.NET

by Farooq Kaiser 8. July 2009 04:29
In last article, we explored the ASP.net MVC application structure. Today, we will build a MVC application that will consume an RSS feed. I will modify my previous project for RSS Feed. Follow the these steps. Select the "Controllers" Folder and then&... [More]

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

.NET | asp.net | C#

ASP.NET MVC application structure

by Farooq Kaiser 3. July 2009 05:18
In this tutorial we will explore ASP.net MVC application structure. When we create an ASP.NET MVC Web application project, MVC components are separated based on the project folders. Follow the these steps. Launch Visual Studio 2008 by selecting All Programs Microsoft Visual Studio 20... [More]

Currently rated 2.3 by 3 people

  • Currently 2.333333/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

asp.net

Understanding the MVC Application Execution Process

by Farooq Kaiser 2. July 2009 15:37
The following are the stages of execution for an MVC Web project.  In the Global.asax file, Route objects are added to the RouteTable object. The UrlRoutingModule module uses the first matching Route object in the RouteTablecollection  to create the RouteD... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

asp.net

Exploring ASP.NET MVC

by Farooq Kaiser 1. July 2009 12:36
The ASP.NET MVC is a Model-view controller framework which Microsoft added to ASP.NET.  It allows software developers to build a Web application as a composition of&nb... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

.NET | asp.net

AJAX using jquery and ASP.NET

by Farooq Kaiser 7. February 2009 04:14
jQuery is a lightweight JavaScript library and can be downloaded from http://www.jquery.com. I’ll show you how to use jQuery to call a page method without using the... [More]

Currently rated 4.0 by 2 people

  • Currently 4/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

.NET | asp.net | C#

XML LINQ for RSS Feed

by Farooq Kaiser 5. February 2009 04:33
Using LINQ we can easily consume RSS feed into our project.  Include the following namespaces in the project. using System.Xml.Linq;using System.Linq;      protected ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , ,

.NET | asp.net | C# | XML

Using C# to download and listing of files from a FTP server

by Farooq Kaiser 2. February 2009 03:21
Today, i'll show you how to downloading a File with a Save As Dialog in ASP.NET.  The complete code for this is shown blow.     private void Download(string File... [More]

Currently rated 4.3 by 3 people

  • Currently 4.333333/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

.NET | asp.net | C#

Google Maps with ASP.NET

by Farooq Kaiser 28. January 2009 10:48
Today, i'll show you how to integrate google maps with asp.net page.The first step before using Google Maps is to register for a key with Google (www.google.com/apis/... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , , ,

.NET | API | asp.net | C# | Google

Jobs Autos Real estate Videos Power by Google