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...
Thursday, 24 April 2008
Saturday, 19 April 2008
Six Quick Crystal Reports Design Tips
Creating reports can be a daunting task. Reports can demand a great deal of effort and time, especially if you have not worked with Crystal Reports much. In this article, Jeff provides six quick Crystal Reports Design Tips to assist in creating killer reports with style and speed. Among other tips,...
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...
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...
Thursday, 3 April 2008
VB6 Editor Mouse Scroll Problem
Microsoft offers a "fix" for the mousewheel scrolling problem in VB6's IDE at this web pagehttp://support.microsoft.com/?id=837910But you still won't be able to scroll a FlexGrid control. Otherpossibilities areVBScroll: http://www.gasanov.net/VBScroll.aspI hope this will he...