I have already blogged about NuGet in earlier post about how to install NuGet packages to your project with wizard. NuGet Extension also provides an package manager console to add library to your projects. Let’s install a blogml package via package manager console. So if you still not installed NuGet...
Tuesday, January 25, 2011
Monday, January 24, 2011
Getting Started with NuGet Packages step by step overview.
We can all see lots of buzz about NuGet in asp.net world. So I decided to explore it. let’s explore it in some details. Following is a explanation of NuGet Extension on the code plex here.
"NuGet is a Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual...
Programmatically creating asp.net request and handling response
Recently one of the my friends asked about how to create a web request in asp.net to a url outside of project. So I decided to write a small blog post regarding this. This web request can be easily created with httpwebrequest class and you can easily consume the response we are getting from this. This...
Saturday, January 22, 2011
JQuery UI 1.8.9 new version launch today
JQuery UI contains great controls and it’s very useful when developing sites. Today a new version of Jquery UI is launched.You can find more details about that from following link.http://blog.jqueryui.com/2011/01/jquery-ui-1-8-9/It’s contains Bug fixes for Datepicker, Tabs and other things and also...
Multi Monitor Support in Visual Studio 2010
In this blog post we are going to see an new feature for multi monitor support in Visual Studio 2010. In Visual Studio 2010 you can drag windows outside IDE and thus you can use in different monitor. That’s feature is very useful if developer is having multiple monitor and he can work different windows...
Friday, January 21, 2011
HTML and Java Script code snippets in Visual Studio 2010
We all love Visual Studio as great IDE and Microsoft is providing more and more features for that IDE. Let’s investigate one of great features that Microsoft has given with Visual Studio 2010. What is code snippets? Code snippets is a one of the cool feature that given in Visual Studio IDE. If you know...
Thursday, January 13, 2011
HTTP Module in details
I know this post may sound like very beginner level. But I have already posted two topics regarding HTTP Handler and HTTP module and this will explain how http module works in the system. I have already posted What is the difference between HttpModule and HTTPHandler here. Same way I have posted about...
DotNetJalps Nnews- New feed address.
Hello All, I am moving my feeds to new address so please update your feeds with my new address. Earlier there was two or three feed address and that’s why there were some confusion between the feed address among readers. So I decided to just keep one feed address for all and so I am migrating my all...
Sunday, January 9, 2011
Converting a generic list into JSON string and then handling it in java script
We all know that JSON (JavaScript Object Notation) is very useful in case of manipulating string on client side with java script and its performance is very good over browsers so let’s create a simple example where convert a Generic List then we will convert this list into JSON string and then we will...
Distinct operator in Linq
Linq operator provides great flexibility and easy way of coding. Let’s again take one more example of distinct operator. As name suggest it will find the distinct elements from IEnumerable. Let’s take an example of array in console application and then we will again print array to see is it working...
Saturday, January 8, 2011
ASP.NET 4.0- Html Encoded Expressions
We all know <%=expression%> features in asp.net. We can print any string on page from there. Mostly we are using them in asp.net mvc. Now we have one new features with asp.net 4.0 that we have HTML Encoded Expressions and this prevent Cross scripting attack as we are html encoding them. ASP.NET...
Sunday, January 2, 2011
.NET Framework 4.0-Guid.Parse Method
In earlier version of .NET framework we don’t have Guid.Parse method Now we have an Guid.Parse method in .NET Framework and it’s work like any parse method. Let’s see it by an example. Let’s create console application for that.class Program{ static void Main(string[] args) { string newID =...
Creating an HttpHandler to handle request of your own extension
I have already posted about http handler in details before some time here. Now let’s create an http handler which will handle my custom extension. For that we need to create a http handlers class which will implement Ihttphandler. As we are implementing IHttpHandler we need to implement one method called...
Thanks All the readers and community and Happy new year to all of you.
This is my first blog post for new year 2011 and I would like to take this opportunity to thank all the readers for making my blog very successful and accepting me a community member. As year 2010 has lots of up down in IT filed it was recession period and now we almost recovered from it. Personally...