If you find this article useful, consider making a small donation to show your support for this web site and its content.
Free app Developer Interview available here.

Available on the iPhone App Store
Available on the Google Play
AboutMe
About me:
Hi. My name is Farooq Kaiser and I'm a software developer from Toronto, Canada.

Twitter authentication using OAuth

by Farooq Kaiser 5. September 2010 04:02
As of August 31,2010, Twitter has stopped using basic authentication. applications will all use OAuth, an authentication method that lets you use apps without them storing your password. To learn more about OAuth, please visit @ http://oauth.net. Register your new application with Twitter ... [More]

Currently rated 3.8 by 10 people

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

Tags: , , , ,

.NET | C# | API

Html screen scraping with HtmlAgilityPack Library

by Farooq Kaiser 29. August 2010 14:15
What is Screen Scraping ? Screen scraping is a process that reads any webpage and extract data from html tags. In this article, i will examine how to scrape a given web page using htmlagilitypack library. It is a .NET code library that allows you to parse "out of the web" HTML files. It... [More]

Currently rated 3.7 by 22 people

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

Tags: , , ,

Putting a Bing Search on your Website

by Farooq Kaiser 25. March 2010 07:41
In this article, i will examined how to integrate Microsoft Bing Search engine on your site. First, you would have to get APPID from Microsoft site. Here is a link.  In next step, in your project add the following web reference. http://api.search.live.net/search.wsdl?AppID=... [More]

Currently rated 5.0 by 2 people

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

Tags: , ,

C# | API

Did you know.. How to generate Excel 2007 file in C#?

by Farooq Kaiser 24. February 2010 02:19
You can do it using ExcelPackagethat provides server-side generation of Excel 2007 spreadsheets. You can download it from codeplex.  Here is sample code to generate XLSX file using ExcelPackage. 1: FileInfo XLSXFile = new FileInfo(XLSXFileName); 2: using ... [More]

Currently rated 4.0 by 1 people

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

Tags: , ,

.NET | C# | Did you know

Did you know.. How to create CSV or Text file in C#?

by Farooq Kaiser 23. February 2010 07:52
Here is our C# code to generate CSV file. 1: StringBuilder sb = new StringBuilder(); 2: string strDelimiter = ","; 3:  4: foreach (DataRow dr in table.Rows) 5: { 6: string[] arr = Array.ConvertAll(dr.I... [More]

Currently rated 4.5 by 2 people

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

Tags: , ,

.NET | C# | Did you know

MS Chart Controls to PDF with iTextSharp using XML Template

by Farooq Kaiser 10. February 2010 05:45
In this article, i will examined how to build reports with ItextSharp PDF control and Ms Chart controls using XML template. The Xml template gives us freedom to change the contents without having to recompile and deploy the application again. Here is our sample report in XML template. ... [More]

Currently rated 4.3 by 6 people

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

Tags: , , , , ,

.NET | C# | Reports | XML

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]

Currently rated 5.0 by 1 people

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

Tags: , ,

.NET | C# | XML

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]

Currently rated 5.0 by 1 people

  • Currently 5/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]

Currently rated 2.8 by 17 people

  • Currently 2.764706/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]

Currently rated 3.0 by 5 people

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

Tags: , ,

asp.net | asp.net | asp.net | .NET | C# | C# | C# | 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.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#

Named and optional parameters in C# 4.0

by Farooq Kaiser 6. August 2009 05:14
In this article, I will explore named and optional parameters in C# 4.0 features. Named and optional parameters are really two distinct features, and allow us to either omit parameters which have a defined default value, and/or to pass parameters by name rather than position. Named parameters ar... [More]

Currently rated 3.0 by 2 people

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

Tags: ,

.NET | C#

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]

Currently rated 2.5 by 2 people

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

Jobs Autos Real estate Videos Power by Google