K. G. Sreeju Nair
Knowledge has to be improved, challenged, and increased constantly, or it vanishes.
-
Extension methods in .Net framework
Recently one of my friend asked me about extension method. Though it was introduced in .Net framework 3.0, lots of people are not using this or not aware of the power of extension methods. So I decided to write a blog post about this to give an introduction to the extension methods.
-
Integrate Bing Search API into ASP.Net application
Couple of months back, I wrote an article about how to integrate Bing Search engine (API 2.0) with ASP.Net website. You can refer the article here
-
Integrating Flickr with ASP.Net application
Flickr is the popular photo management and sharing application offered by yahoo. The services from flicker allow you to store and share photos and videos online. Flicker offers strong API support for almost all services they provide. Using this API, developers can integrate photos to their public website. Since 2005, developers have collaborated on top of Flickr's APIs to build fun, creative, and gorgeous experiences around photos that extend beyond Flickr.
-
Using custom fonts in your web pages
From the start of web, people were restricted to use standard fonts(those are globally available in all platforms) such as Arial, Times etc, for displaying content in web pages. The main issue was that the browser did not have the capability to read the font from server. Due to this companies were forced to use different font than their branding for the web pages, which created dissatisfaction for the brand owners. Though internet explorer addressed this by allowing embedding font starting from version 4, there was no common method that works universally in all browsers. With HTML 5 specification, things are changing. HTML 5 have a @font-face element, that can be used to link your page with a font that resides in remote location.
-
Configure Email notifications on SharePoint 2010 list
In this article I am going to demonstrate how you can configure email notification feature on SharePoint List. For the purpose of demonstration I chose the default tasks list that is coming with almost all default SharePoint sites. Tasks list have one column “Assigned To”. When an item is created in the task list, I would like to send an email to the user to whom the task is assigned. The scenario is very simple and straight forward.
-
Getting started with LINQ to SharePoint
One of the major advantages of SharePoint 2010 is the support for LINQ. If you are new to LINQ, I would recommend you to read the below article from MSDN.
-
Display weather information in your site using jQuery and Yahoo services
Few months back, I wrote an article about how to retrieve weather information from www.weather.com using XOAP services. In that article I was subscribing the data from server side, caching data to SQL server database and then retrieving the information from SQL to display on the page. You can read that article from the link http://weblogs.asp.net/sreejukg/archive/2011/02/21/include-weather-information-to-your-site-using-weather-com-xmloap-service.aspx . After published the article, I received certain queries about retrieving the weather information without using any server side technology, so I decided to write this.
-
Integrate BING API for Search inside ASP.Net web application
Update: Since Bing has moved Search API to Windows Azure Market place, I wrote a new article about the new Bing Search API. You can read this from the below link
-
Installing Windows 8 Developer Preview in Oracle Virtual Box
Microsoft has released Developer Preview for Windows 8 a while ago. Developer Preview is a pre-beta release of the software. You can download the developer preview from here.
-
SharePoint 2010 : Sharing data between Visual Web Parts
Web Parts are essential parts of SharePoint 2010 that helps developers and site owners to customize the SharePoint portal. There are lots of out of the box web parts available in SharePoint 2010. When you are building business portals definitely you will be in need to create your own web parts corresponding to your business requirements. SharePoint 2010 supports Visual web parts. Visual web parts allow developers to easily design the user interface as they are doing in conventional ASP.Net applications.