Recently before some time Scott Hanselman just announced Internet Explorer 10 for windows 7. Today it’s launch and I have just downloaded the and installed it. I thought you it would be a great idea to write a blog post about this.
Download Internet explorer 10 for windows 7:The first question comes to your mind that from where we can download internet explorer 10. Following is a link for that...
Wednesday, February 27, 2013
Sunday, February 24, 2013
HTML editor enhancement in visual studio 2012
In this post I am going to explain about HTML Editor Enhancement in visual studio 2012. I have been writing few post about Visual studio 2012 new features and this post will also be part of that. You can read whole series at following link.
Visual Studio 2012 feature series
Tag highlighting in Visual...
Saturday, February 23, 2013
Dotnetjalps.com- 551 blog posts and still counting!!
Today is one of the most important day for this blog as I am writing 551th blog post for this blog post. I can’t believe this..yeah this blog has completed 550 blog post.
People I like to thank:
First of all I like to thank my parents for whatever I am without them I could not even stand near where I am right now!!. Then I would like to thank my wife without her support it would not have been...
Thursday, February 14, 2013
Default keyword in c#
In this post, I am going to explain about default keyword in c#.
Introduction:As per MSDN default keyword in C# used to assign the default value of the type. In some situation its comes very handy where we don’t want to create object and directly assign the default value of it.
The basic syntax of default is default(T) where t is any reference type of value type and If T is a value type, whether...
Wednesday, February 13, 2013
How to convert a list into array with Linq
In this post, I am going to explain how we can convert an generic list to simple int array with Help of Linq. Recently, I was working on an application and there I needed an Int array of for list of ids in generic list. I tried various methods and then with the help of ‘Select’ operator and ToArray method I have easily converted an generic list to the int array.
Lets take a simple example. I need...
Thursday, February 7, 2013
Redirection with ASP.Net friendly URLs
In this post we are going to see how we can use Response.Redirect(Redirecttion) in asp.net friendly URLs. Before some day I have written a post about ASP.NET Friendly URLs – Cleaner, SEO friendly URLs. On that post one reader ‘Ramesh’ asked me that how we can do redirection with ASP.Net friendly URLs. So this post is in reply to Him.
How to redirect a page to ASP.Net friendly URLs:
Actually!!...
Monday, February 4, 2013
ASP.NET Friendly URLs – Cleaner, SEO friendly URLs
Search Engine optimization is one of the key factor for your site. If you spend millions of dollars on making your website looks good and bug free then also its possible that you will not get attention of search engine because of your URLs. For example you’re having shopping cart created in asp.net and you have not optimized your URL then it will look like following.
www.foo.com ?Product.aspx?Category=1&...
Sunday, February 3, 2013
What’s new in ASP.NET and Web Tools 2012.2 Release Candidate
Recently before some time, Scott Gu announced ASP.NET and Web Tools 2012.2 Release Candidate. I have downloaded it and used it for a while and I have found following new things.
ASP.NET Enhancements:New facebook asp.net mvc template is there. Creating facebook application with asp.net mvc become very easy. In just a few step you can easily create facebook application and get data of users and...
Saturday, February 2, 2013
How to hide title bar in jQuery UI modal dialog?
jQuery UI is a great open source set of user controls and it’s very easy to use. Recently one of my friend asked question that how we can hide title bar in jQuery UI Dialog? so this post is a reply to him. Let’s create a simple html and use jQuery Ui modal dialog. Following is a code for that.
Here in the above code you can see I have create a hello world pop up with asp.net jQuery CDN.
<html>
<head>
...
How to create overload methods in WCF service with C#
Before some days I have posted an blog about How to create overloaded web methods in asp.net web service? In this post I am going to explain how we can create overload methods in WCF(Windows Communication Foundation) service with C# language.
So let’s consider same Hello world example which we have used web service overload method. Let’s create two methods HelloWorld one is with name and another...
Friday, February 1, 2013
Getting started with Twitter Bootstrap and ASP.Net MVC
Update: Now with ASP.NET MVC5 you don't need to install twitter bootstrap nuget package now its by default available with default template.
In this blog I am going explain how we are going integrate Twitter Bootstrap library with ASP.Net MVC.
What is Twitter bootstrap:
Twitter Bootstrap is open source library created by Twitter. As per twitter it’s Sleek, intuitive, and...
SelectMany operator in Linq C#
SelectMany is an important operator in Linq. It takes each element of a sequence to an IEnumerable and flattens the resulting sequences into one sequence. You can find out more information about different overload list from the below link.
http://msdn.microsoft.com/en-us/library/system.linq.enumerable.selectmany.aspx
In this post I am going to explain How it can be really useful when you want to...