Before some time Microsoft Press and Oreilly sent me Microsoft Office Professional 2013 Step by step by to review. I was so busy at my professional commandment that I was not able to review. Now I get a time to review and here is review of book.
About this book:
Anybody who knows computer Knows...
Sunday, December 29, 2013
Saturday, December 14, 2013
Creating DJango application with Python in Visual Studio
In previous post I have written about creating a basic python application with visual studio. In this post we are going to learn how we can create a DJango application with Python in Visual Studio with the help of python tools for Visual Studio.
What is DJango?
As per wikipedia, DJango is a free open...
ASP.NET Web API vs WCF
With Microsoft.NET Stack there are lots of way to create service like ASP.NET Web Service, WCF(Windows Communication Foundation) service and now ASP.NET Web API. The developer often get confused mainly between WCF Service and Web API. So I thought it is a good idea to write a blog post to about differences between ASP.NET Web API and WCF Service.
Difference between ASP.NET Web API and WCF...
Wednesday, December 11, 2013
Creating first python application in Visual Studio
Before some time I have blogged about Python tools in Visual Studio and explained how we install python tools with visual studio and start developing python application with the one of greatest editor in class Visual Studio. In this post we are going to learn how we can create a python application...
Sunday, December 8, 2013
Python tools for Visual Studio
Lots of people complaining that Microsoft does not support open source that is a myth about Microsoft it does support there are lots of open source initiative done by Microsoft and Python tools for Visual Studio is one of them.
With the help of this plugin you are able to do work on python on Visual...
ASP.NET and Web Tools 2013.1 Tools for Visual Studio 2012
Recently Microsoft has released ASP.NET and Web Tools 2013.1 for visual studio 2012. There are tons of new feature and improvements are there. So Now it’s possible to have all the latest feature on ASP.NET stack on Visual Studio 2012 like ASP.NET MVC 5, ASP.NET Web API 2, Entity Framework 6.0 etc.
You...
Saturday, December 7, 2013
New Milestone achieved–600,000 visits for my blog
Today, I got a good news from www.sitemeter.com that My blog has completed 600,000 visits for my blog. It’s a great achievement. I have never thought I will go so far. It’s because of readers of my blog so thank you very much for your support and love without you guys this was not possible. On...
Saturday, November 30, 2013
Getting started with ELMAH and ASP.NET MVC
We all need a framework to log exceptions in our web application. Today, We are going to learn about same. ELMAH(Error Logging Modules and Handlers) is an application wide error logging framework. How we can install it in ASP.NET MVC.
What is ELMAH:
ELMAH(Error logging Modules and Handlers) is...
How to find days in year except Saturday and Sunday in C#
Before 2 years I have written a blog post to find Saturday and Sunday in given date range. It has gain a lot of popularity and on that blog post one user ask about how we can find days in year except Saturday and Sunday in C#. This post is a in reply for that. Following is a code for that.
using...
Thursday, November 14, 2013
My visual studio settings
Lots of people send me email about what kind of visual studio settings I am using and I am replying them again and again so I thought it will be good idea to write a blog post about it.
Yes, Since last 2 months I have been using dark theme of Visual Studio 2012 but I am not using default dark theme...
Friday, November 8, 2013
How to find space used by table in SQL Server
Recently there was requirement for a client where we need to find space occupied/used by particular table in SQL Server. I did some research a found a very cool way to get space used information from SQL Server.
With SQL server 2005 and higher version you can use ‘sp_spaceused’ to find space...
Thursday, November 7, 2013
How to find path of database data files and log files in SQL Server
In this post, We will learn about different technique to find path of data files and log files on SQL Server. Let’s go through one by one of them.
The first technique, We are going to use is very simple way to finding file path for database. But with this you can find path for one database only. It’s...
Sunday, October 27, 2013
All about Virtual,Override and New in C#
I have seen that lots of people get confused with Virtual, Override and new keyword in C#. So I thought it will be a good idea to write a blog post about it. In this blog post we will learn what is virtual, override and new keyword in C# and what’s difference between override and new in C#.
Virtual...