ebizdom

Stories submitted by ebizdom

Resizable asp.net Gridview columns using Jquery(www.fairnet.com)

submitted by ebizdomebizdom(320) 1 month, 14 days ago

his article explains how to use jQuery's plug-in colResizable to implement client-side column resizing in an ASP.NET GridView. read more...

add a comment |category: |Views: 2

tags: another

Twitter authentication using OAuth(www.fairnet.com)

submitted by ebizdomebizdom(320) 1 year, 8 months ago

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 You'll need a name and url for your application in order to register it, and you'll need to define a callback url. The callback url is the full url of the page Twitter should send the user to after it's done authe... read more...

add a comment |category: |Views: 195

tags: another

Html screen scraping with HtmlAgilityPack Library(www.fairnet.com)

submitted by ebizdomebizdom(320) 1 year, 8 months ago

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 can be downloaded @ http://htmlagilitypack.codeplex.com/ In this Tutorial, i will read my own web site http://savebigbucks.ca that offers daily deals in Canada. Here is code snippet that reads the web page. read more...

1 comment |category: |Views: 217

tags: another

Building Twitter Application using TweetSharp(www.fairnet.com)

submitted by ebizdomebizdom(320) 1 year, 10 months ago

In this article, i will examined how to build twitter app using TweetSharp. Tweetsharp library is available at codeplex here. read more...

add a comment |category: |Views: 198

tags: another

Silverlight Transformations(www.fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 1 month ago

Recently I started exploring Silverlight and it has some cool features that i would like to share. In this article i will demonstrate how to specify transformations in Silverlight with TranslateTransform, ScaleTransform, RotateTransform, SkewTransform and MatrixTransform. read more...

add a comment |category: |Views: 5

tags: another

Putting a Bing Search on your Website(www.fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 2 months ago

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. read more...

add a comment |category: |Views: 13

tags: another

Did you know.. How to develop Jquery Plugin?(www.fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 3 months ago

jQuery is a lightweight cross-browser JavaScript library. It is very easy to build a plugin that can extend the jquery functionality and that Plugin can be reused. Here is Jquery plugin structure. 1: jQuery.fn.pluginName = function(){}; Let's put together... read more...

add a comment |category: |Views: 13

tags: another

Did you know.. How to generate Excel 2007 file in C#?(www.fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 3 months ago

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 ... read more...

1 comment |category: |Views: 14

tags: another

Did you know.. How to create CSV or Text file in C#?(www.fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 3 months ago

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... read more...

add a comment |category: |Views: 29

tags: another

Did you know.. How to download file from web service using JavaScript (www.fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 3 months ago

Here is our Web service in C#. 1: [WebMethod] 2: public void DownloadFile(string fileName) 3: { 4: HttpContext returnContext = HttpContext.Current; 5: string url = "http://localhost" + @"/" + fileName; 6: read more...

add a comment |category: |Views: 22

tags: another

MS Chart Controls to PDF with iTextSharp using XML Template(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 3 months ago

In this article, i will examined how to build reports using ItextSharp PDF controland Ms Chart controlsusing XML template. The Xml template give us freedom to change the contents without having to recompile and deploy the application again. read more...

add a comment |category: |Views: 324

tags: another

Email Template using C#(www.fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 4 months ago

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. read more...

add a comment |category: |Views: 258

tags: another

HTML based file upload/download to FTP server using HttpHandler in C#(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 5 months ago

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. read more...

add a comment |category: |Views: 71

tags: another

Using ODBC driver to access XLS, XLSX, TXT or CSV files.(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 5 months ago

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. read more...

add a comment |category: |Views: 274

tags: another

Reading and Writing BLOB Data to MS SQL or Oracle Database(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 5 months ago

In this article, i will examine how to store and retrieve binary files such as image or PDF into MS SQL or Oracle database. read more...

add a comment |category: |Views: 19

tags: another

Creating and consuming your first WCF service(fairnet.com)

submitted by ebizdomebizdom(320) 2 years, 8 months ago

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 service to demonstrate WCF service. read more...

add a comment |category: |Views: 61

tags: another