DiscountASP
AboutMe
About me:
Hi. My name is Farooq Kaiser and I'm a software developer from Toronto, Canada.

Email Template using C#

by Farooq Kaiser 27. January 2010 03:46
In this article, i will examined how to build template to store email data such as body and subject. The template is an XML file that will store the static text with dynamic Tags. The dynamic tags are just like variables that get replaced by the real data. Here is a sample template. ... [More]

Be the first to rate this post

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

Tags: , , ,

.NET | C# | XML

HTML based file upload/download to FTP server using HttpHandler in C#

by Farooq Kaiser 24. December 2009 05:18
In this article, i will examined how to upload/download file from HTML client to FTP server using HttpHandler in C#. This approach can be very handy for application integration. Here is our html code that will consume HttpHandlers. 1: <html xmlns="http://www.w3.... [More]

Currently rated 4.0 by 1 people

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

Tags: , , , ,

.NET | C#

Using ODBC driver to access XLS, XLSX, TXT or CSV files.

by Farooq Kaiser 18. December 2009 13:59
In this article, i will examined how to access XLS, XLSX, TXT or CSV files. It is very easy to access these files using ODBC drivers. Here are Connection Strings Excel Connection String "Provider=Microsoft.Jet.OLEDB.4.0; data source={0}; Extended Properties=\"Exc... [More]

Be the first to rate this post

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

Tags: , , ,

.NET | C#

Reading and Writing BLOB Data to MS SQL or Oracle Database

by Farooq Kaiser 18. December 2009 04:22
In this article, i will examine how to store and retrieve binary files such as image or PDF into MS SQL or Oracle database. Reading a File into a Byte Array 1: byte[] m_barrImg = null; 2: using (FileStream fs = new FileStream(FileName, FileMode.Open, FileAcce... [More]

Be the first to rate this post

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

Tags: , , ,

Creating and consuming your first WCF service

by Farooq Kaiser 24. September 2009 14:57
In this article, i will examine how to create and consume a WCF service. WCF is next-generation programming platform and runtime system for building, configuring and deploying service-oriented applications. For more details please see here. Creating a WCF service I will create a stock ... [More]

Be the first to rate this post

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

Tags: , ,

.NET | C#

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]

Be the first to rate this post

  • Currently 0/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#

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.0 by 1 people

  • Currently 4/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#

Sorting Using C# Lists

by Farooq Kaiser 2. February 2009 04:38
I'll show you how to sort and iterate list object in generic  public class Customer        {            public int custId;       &n... [More]

Be the first to rate this post

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

Tags: , ,

.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

Populating drop down list with XML in C#

by Farooq Kaiser 26. January 2009 06:54
 Today, i will show you how to populate drop down list with xml data. Let's say we have the following xml.   <users>  <user> <id>001</id>  <name>James</name>  </user>  <user> <id>... [More]

Be the first to rate this post

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

Tags: , ,

.NET | C# | XML

How to read files in folder and subfolders in C#

by Farooq Kaiser 23. January 2009 03:53
I would like to show you recursively reading files in folder and subfolders in C#. Since i build this project for web, so please feel free to change for windows or console App.       protected void Page... [More]

Currently rated 2.0 by 1 people

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

Tags: , ,

.NET | C#

Anonymous types with linq

by Farooq Kaiser 14. January 2009 04:17
I would like to show you the anonymous types with linq in c#.     Let's say we have an array and we would like to use linq.             var num = new int[] {0,&n... [More]

Be the first to rate this post

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

Tags: , ,

.NET

Jobs Autos Real estate Videos Power by Google