(Naveen) There have been times when we would like to the know function return value ,debug within the function and get profiling information like the duration of a function. VS.NET provides all these features, but in production environment we won’t have VS.NET. This is where Windbg comes in handy.
Tag: Development
Using jQuery’s Animate() Step Callback Function To Create Custom Animations
(Ben Nadel) When I was reading the jQuery 1.4 Reference Guide over the weekend, it mentioned that jQuery’s animate() method has a step callback function that gets called after each step of the animation has completed. Unfortunately, it didn’t say anything more than this. I tried looking at the onlin
Performance: Using dynamic code to copy property values of two objects
(Gunnar Peipman) Last year I wrote short posting about how to use LINQ to find matching properties of two objects. In this posting I will show you how to copy values from one object to another and how to boost up performance so you can use this strategy also on in servers under heavy load.
Creating Multiple Choice Exam Application Using ASP.NET MVC Framework
(Mohammad Azam) Several months ago I wrote a multiple choice exam application using the WebForms framework. The idea revolved around displaying questions and choices to the user and giving them the ability to select the correct answer. Although the idea was simple but the limited control over the HT
Tip: Replacement Methods for Obsolete WebProxy.GetDefaultProxy Method
(Wong Shao Voon) When we use the .Net HTTP classes to do, say, downloading, we need to set its proxy because some computers, especially those in a large coporate companies, cannot access internet directly, they can only do so though a web proxy server.
ScaleTransform in WPF
(Mahesh Chand) Scaling is a process of stretching or shrinking an element. The ScaleTransform scales an element by a given factor.
Traversal vs. Collection Filtering In jQuery
(Ben Nadel) When it comes to jQuery selectors, I tend to think in two different modes: collection filtering and traversal filtering. By that, I mean that I see filtering as happening at two different and distinct times in the selection process. With collection filtering, jQuery filters nodes only on
RotateTransform in WPF
(Mahesh Chand) RotateTransform rotates an element clockwise by a specified angle about the point. The RotateTransform object in WPF represents RotateTransform. The Angle property represents the angle in degrees to rotate clockwise. The CenterX and CenterY properties represent the X and Y coordinates
Reduce Maintenance with Routing in ASP.NET 4
(Peter Vogel) You may have noticed that more and more sites have URLs that mean something rather than describing the path to the page. ASP.NET 4 makes this much easier to implement for your site and may save you from ever having to redirect users again.
Comparing the Performance of Visual Studio’s Web Reference to a Custom Class
(Sam Menard, John Jakovich and Jamie Davis) As developers, we all make assumptions when programming. Perhaps the biggest assumption we make is that those libraries and tools that ship with the .NET Framework are the best way to accomplish a given task. For example, most developers assume that using
