Wednesday, November 28, 2007

Some handy Visual Studio 2005 shortcuts

We always use to perform the things faster without interacting with mouse. I have found a great link for visual studio 2005 short cuts. It's is very use ful when we want to save time while developing applications.

Here is the link:

http://jason.diamond.name/weblog/2006/07/29/some-handy-visual-studio-2005-keyboard-shortcuts
Share:

How to debug process with visual studio 2005 + aspnet_wp.exe

Some time while you are testing you need to debug some things in your asp.net application. Suppose you have run the application with ctrl + f5 and now you want to debug some things, then there are two things either you close the browser and press f5 and start debuging but if your application is heavy that will waste lots of time for your application, second way is some thing tricky but you can debug things.

We have aspnet_wp.exe(asp.net worker process) running on machine where iis and application is installed. Now suppose at present you are browsing default.aspx page and you want to debug it without pressing f5 . Then go to the your visual studio IDE -> Debug menu-> Attach Process. Select the aspnet_wp.exe process and click 'attach to process'. Now your application instance will bind with code. You can set the debug point as you do with normal debugging and it will work just as normal debugging.

So you can start debugging without wasting so much time.

Happy Programming...
Share:
Tuesday, November 27, 2007

What's new in visual studio 2008 and .NET Framework 3.5

Microsoft has just released the visual studio 2008 and .net framework 3.5. I have found a great link to discover what's new in visual studio 2008 and .net framework. The Link contains following things.

1) WPF improvements.
2) What's new in visual studio 2008
3) What's new in .net framework 3.5

Here is the link for that:

http://windowsclient.net/vstudio2008.aspx
Share:

Visual Studio 2005 and .NET Framework 3.5Release

Visual Studio 2008 and .NET framework released by the Microsoft recent days.It has lots of new features compare to it's prior version.

With asp.net 3.5 you can now develop web application as you are developing desktop application. You can give functionality to asp.net web application just like desktop with lots of new technologies with .net framework 3.5.

I have found a great link form where you can download asp.net 3.5 and visual studio 2008.

Here is the link:
http://www.asp.net/downloads/vs2008/
Share:

What is diffrenece between string.compare and string.compareordinal

String.Compare can be or not be case-sensitive, and can incorporate anynumber of comparison options, including culture-sensitivity and sortingrules. That is, it is not comparing the exact strings necessarily, but canbe configured to do various sorts of comparisons. String.CompareOrdinalcompares the numeric values of the individual Unicode characters of thestrings. In other words, it is always case-sensitive, and neverculture-sensitive.

String.CompareOrdinal is faster (more efficient) when you don't need to do aculture-sensitive comparison, and you do want to do a case-sensitivecomparison.String.CompareTo is case-sensitive, using an Ordinal comparison, andculture-sensitive, but always uses the current culture. It is faster thanString.Compare, but less efficient than String.CompareOrdinal.
Share:
Thursday, November 15, 2007

Free ASP.NET Icons

We need icon to display various operations. Actually a image can speak more virtually then the text. I have found a great free collection of icons for asp.net and other applications.

Here is the link for that...
http://www.aspneticons.com/

You can download it free from above link.
Share:

CUBE and Roll Up in SQL Server

Some time we need to summarize data very quickly without writing very complex query. CUBE And ROLL UP are great commands that give us very good summary options.

We can summarize the data without writing dirty and complex queries with the help of CUBE and ROLL Up Operators.

I have found a great link for CUBE and ROLL UP to understand it deeply.

Here is the link for that.
http://databases.about.com/od/sql/l/aacuberollup.htm
Share:

Support this blog-Buy me a coffee

Buy me a coffeeBuy me a coffee
Search This Blog
Subscribe to my blog

  

My Mvp Profile
Follow us on facebook
Blog Archive
Total Pageviews