Postscript is a language used for creating vector Images,Vector images are made up of many scalable objects and they are defined by mathematical equations rather than the pixels ,so they always renders higher quality images.The Advantages of Vector Images over Bitmap images1.Vector images are resolution independent, how much ever we resize the image the quality remains the same. 2.Vector Images images does not contains rectangular background as the bitmap images. &nbs...
Read More
Want to load the data dynamically as Facebook feeds?Need to populate the data when scrollbar comes down to page/panel?In Facebook, we use to see the post feeds would load dynamically when you scroll to bottom of the page. I did attempt the same to achieve it in ASP.NET and finally end up with a very basic example with the help of JQuery Ajax. In this blog, we can discuss on this how to implement it in ASP.Net with the help of JQuery in step by step procedure way. To achieve this in ASP...
Read More
Do you wish to extend the built-in types with new methods?Want to extend custom types with new methods?In C#, we can use the Extension Methods to extend both built-in types and custom types. These extension methods are introduced in C# 3.0What are Extension Methods?Extension methods are special kind of static methods in a static class which enables us to add new methods to built-in types and custom types without creating new derived type.How to implement Extension Methods: Create a static method...
Read More
Are you building modules in DotnetNuke?Is one module depends on another module?Want to exchange data between modules? Here we can discuss how to set up Inter Module Communication in DotnetNuke. In DNN, with the help of IModuleCommunicator and IModuleListener interfaces we can setup the communication between the modules. Here I would like to present all the required steps to setup the communication between modules. Before we start discuss on this, let’s understand who is communica...
Read More
Are you interested in downloading YouTube Videos?Want to download YouTube Videos in device specific formats?Need to have some fun while coding on interesting Stuff?Yes, then you are at the right place! In this blog I am going to show you how we can download the Videos from YouTube URL in different formats. You can download the video from YouTube URL in these formats: .Mp4, .Flv, .3Gp, .WebMEach YouTube video URL has a video id, which is appended to the URL as a query string. The name of the quer...
Read More
Are you looking for any HTML Parser?Want to traverse through HTML DOM elements?Want to read properties and its values of HTML element?Want to add properties to HTML elements dynamically? Want to modify HTML form at runtime? JQuery is one of the best solution to do all these at client side. But what about to do the same on server side?Here is one of the best, smarter, fastest and reliable solution: Html Agility PackHtml Agility Pack is an open source .NET library which is very similar to working ...
Read More
How to deploy an Outlook 2010 Add-in Using C#.NET And Visual Studio 2010In the previous blog, we walked through the steps to build an outlook 2010 add-in, how to create a custom task pane, add a custom context menu item and add a ribbon in the Outlook 2010. In this post, I’ll take you through the steps required to create a setup package so that you can distribute the add-in to others.Creating a new Setup Project:Returning to the Add-in project we created in this blog, we’ll now need ...
Read More
How to build an outlook 2010 Add In using C#.Net and Visual Studio 2010?In this post, I’ll take you through the steps required to build an outlook 2010 plugin using C#.Net with visual studio 2010. This post includes creating custom task pane, adding a new context menu item with the outlook context menu and adding a ribbon bar that appears on the Home screen.Let’s create the project. Open Visual Studio 2010, go to file menu select new project. In the Installed templates expand to...
Read More