Thursday, 24 April 2008

Ajax Error in Visual Studio 2008

Sometimes if we try to deploy an existing .NET ASP.NET 2.0 application which includes Ajax 1.0 library using Visual Studio 2005 we get following errorCould not load file or assembly ‘System.Web.Extensions, Version=3.5.0.0, ….If you are using Ajax Famework Library, Visual Studio 2005 and Visual Studio 2008 installed in the same machine there are somethings you should be aware of.Microsoft suggests...
Share:

Saturday, 19 April 2008

Disable right mouse click, Disable Browser Back Button

Sometime our application demands to change some of the normal workflow of the Browsers. Here are the few tweaks in programming which may help you to do that.Do not allow user to view page using browser back button.<%Response.Cache.SetCacheability(HttpCacheability.NoCache); %>Disable Right ClickThis is a cross browser DHTML script that will prevent the default right menu from popping up when...
Share:

Dotnet 2.x Debugging Links

Lots of successful programming depends on how Good you are in debugging, everyone of us tends to make mistake while programming but if you are good in debugging then you can save lots of your precious time and frustrations. I found couple of good links which gives you very good understanding in debugging in .net technologies. http://www.charlescarroll.com/chaz/site/4302/default.aspx http://www.charlescarroll.com/chaz/site/4810/default.aspx...
Share:

Thursday, 3 April 2008