The Visual Studio 2010 and .NET Framework 4 Training Course includes videos and hands-on-labs designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including: C# 4.0, Visual Basic 10, F#, Parallel Computing Platform, WCF, WF, WPF, ASP.NET AJAX 4.0, ASP.NET MVC Dynamic Data.
More information here.
Related posts
Shoban ASP.net, links, vb.net
PHP versus ASP.NET – Windows versus Linux – Who’s the fastest ?
This is the first question which comes to a developers mind when they think about hosting. misfitgeek wrote an interesting blog post about PHP versus ASP.NET – Windows versus Linux – Who’s the fastest ? you can also read about the Comparative Performance tests here.
Related posts
Shoban ASP.net, php
For all of you who’ve been waiting long and hard, the time has finally come… ASP.NET MVC has been released!
You can download the 1.0 release from the Microsoft Downloads site.
You can also view the documentation for ASP.NET MVC on the MSDN Microsoft Developer Network.
For many of you this means you finally might be able to convince your boss to use ASP.NET MVC in one of your production applications
Read more.
Related posts
Shoban ASP.net
Download your free copy of ASP.net MVC ebook which was written by ScottGu. I am sure there is no need for a introduction about him. The book is licensed under a “Creative Commons Attribution No Derivatives” license – which means you can share, distribute, print, or hand it out to anyone.
You can read more about the book in his blog.

Related posts
Shoban ASP.net
Recently I was working on a project which loads a third party domain webpage in an iframe. Everything looked fine except it started acting weird in Internet Explorer 7.
Later I realised that it was because of the default privacy settings (or rather annoyance) in IE7 which blocks third party cookies in iframes.
There are two ways to solve this.
- Change the IE7 settings to accept all cookies. This can be done by navigating to
Internet Options >> Privacy >> Advanced >> Check “Override Automatic Cookie Handling” and “Always allow session cookies”.
This solution is not possible if you are the webdeveloper. You cannot ask all users to change their privacy settings. So how can you over come this programatically? Look at the second solution.
2. If you are the we developer then you can add p3p headers to the pages loaded in iframe. By doing this we are telling the browser that it is OK to create and maintain cookie values of the pages loaded in iframe. Adding the headers is not a tedious task. Use the following code.
PHP :
header('P3P: CP=\"IDC DSP COR CURa ADMa OUR IND PHY ONL COM STA\"');
ASP :
Response.AddHeader "p3p", "CP=" & chr(34) & "CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" & chr(34)
ASP.net :
HttpContext.Current.Response.AddHeader ("p3p","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");
:>
Related posts
Shoban ASP.net, php
I recently came upon this very useful video about jQuery. Check out the videos here.
Related posts
Shoban ASP.net
Social snippets has written an excellent tutorial about writing your first Facebook Application using asp.net. Check it out here.
Related posts
Shoban ASP.net
Here comes another .net poster. The .net framework 4 poster. Check it out here.

Related posts
Shoban ASP.net
Here is a very useful ASP.net video tutorial. Joe explains very neatly about using Ajax control tool kit in your ASP.net applications.
Here is the link to the video.
Related posts
Shoban ASP.net
I was searching for a bug tracker for a project and I wanted something simple, easy to install and last but not least FREE.
I stumbled upon this wonderful free bug tracker called BugTracker.NET. More details about this tool is available here.
Dont expect this to be very flashy, beautiful bug tracker.
but it does the job.
Related posts
Shoban ASP.net, vb.net
Recent Comments