Archive

Archive for the ‘ASP.net’ Category

Visual Studio 2010 and .NET Framework 4 Training Kit

November 12th, 2009

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.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net, links, vb.net

PHP versus ASP.NET – Windows versus Linux – Who’s the fastest ?

August 7th, 2009

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.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net, php

ASP.NET MVC RTM, Documentation, and Videos

March 18th, 2009

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.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net

Free ASP.NET MVC eBook Tutorial

March 11th, 2009

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.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net

IE7 iframe and cookie hell!

February 19th, 2009

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.

  1. 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\"");

:>

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net, php

jQuery for Absolute Beginners: Video Series

January 3rd, 2009

I recently came upon this very useful video about jQuery. Check out the videos here.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net

How to develop a facebook application

December 4th, 2008

Social snippets has written an excellent tutorial about writing your first Facebook Application using asp.net. Check it out here.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net

.net framework 4 poster

November 27th, 2008

Get started with ASP.net Ajax control tool kit

November 23rd, 2008

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.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net

BugTracker.NET free bug tracker

November 20th, 2008

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.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban ASP.net, vb.net