Understanding ASP.NET MVC Model Binding - 1 views
Agile Testing: Ajax testing with Selenium using waitForCondition - 1 views
-
"An often-asked question on the selenium-users mailing list is how to test Ajax-specific functionality with Selenium. The problem with Ajax testing is that the HTML page under test is modified asynchronously, so a plain Selenium assert or verify command might very well fail because the element being tested has not been created yet by the Ajax call. A quick-and-dirty solution is to put a pause command before the assert, but this is error-prone, since the pause might be not sufficient on a slow machine, while being unnecessarily slow on a faster one."
Jon Lanceley's .Net Blog: MVC3 RadioButtonList Helper - 2 views
LESS « The Dynamic Stylesheet language - 0 views
Knockout : Home - 4 views
MVC 3 partial model validation - 2 views
Partial Validation in ASP.NET MVC 2 « Steve Sanderson's blog - 1 views
Profiling your website like a true Ninja - 2 views
-
Profiling your website like a true Ninja 7 days ago After a mammoth effort by Jarrod Dixon the team’s production profiler is now ready for an open source release. http://code.google.com/p/mvc-mini-profiler/ Let me start with a bold claim. Our open-source profiler is perhaps the best and most comprehensive production web page profiler out there for any web platform. There I said it, so let me back up that statement.
-
After a mammoth effort by Jarrod Dixon the team's production profiler is now ready for an open source release. http://code.google.com/p/mvc-mini-profiler/ Let me start with a bold claim. Our open-source profiler is perhaps the best and most comprehensive production web page profiler out there for any web platform.
Ben Alman » jQuery throttle / debounce: Sometimes, less is more! - 0 views
-
"jQuery throttle / debounce allows you to rate-limit your functions in multiple useful ways. Passing a delay and callback to $.throttle returns a new function that will execute no more than once every delay milliseconds. Passing a delay and callback to $.debounce returns a new function that will execute only once, coalescing multiple sequential calls into a single execution at either the very beginning or end."
Speed Up Your Site! 8 ASP.NET Performance Tips (part 3) - Programming Discussions - 0 views
Stop using AutoMapper in your Data Access Code | Blog | DevTrends - 4 views
ASP.NET MVC and Multiple Submit Buttons - 3 views
Using an Asynchronous Controller in ASP.NET MVC - 2 views
-
"The AsyncController class enables you to write asynchronous action methods. You can use asynchronous action methods for long-running, non-CPU bound requests. This avoids blocking the Web server from performing work while the request is being processed. A typical use for the AsyncController class is long-running Web service calls."
AsyncController v/s SessionLess Controller - Imran Baloch's Blog - 1 views
-
" AsyncController is introduced in ASP.NET MVC 2 while SessionLess controller is introduced in ASP.NET MVC 3. AsyncController allows you to perform long running I/O operation(s) without making your thread idle(i.e., waiting for I/O operations to complete). On the other hand, SessionLess controller allows you to execute multiple requests simultaneously for single user, which otherwise execute multiple requests sequentially due to session synchronization. Understanding these concepts may be easy for you but I have seen a lot of guys become confused on these concepts. In this article, I will show you how to use AsyncController and SessionLess controller in ASP.NET MVC application. I will also compare them and tell you what to use when, where, and the why."
EF Code first and Data Scaffolding - 2 views
« First
‹ Previous
81 - 100 of 196
Next ›
Last »
Showing 20▼ items per page