Browse by Tags

All Tags » C# (RSS)

Using the Features of ASP.NET MVC 3 Futures by imran_ku07

Introduction: ASP.NET MVC 3 includes a bunch of new features that can help you to develop Rich Internet Application(RIA) easily. In addition to these new features, you can also use the features of ASP.NET MVC 3 Futures. ASP.NET MVC 3 Futures includes...

AsyncController v/s SessionLess Controller by imran_ku07

Introduction: 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...

Eagerly Performing ASP.NET MVC 3 Unobtrusive Client Side Validation by imran_ku07

Introduction: Unobtrusive client side validation is one of the great feature that I like in ASP.NET MVC 3. Unobtrusive client side validation feature uses the famous jQuery validation plug-in internally. Jquery validation plug-in perform client side validation...

Unobtrusive Client Side Validation with Dynamic Contents in ASP.NET MVC 3 by imran_ku07

Introduction: A while ago, I blogged about how to perform client side validation for dynamic contents in ASP.NET MVC 2 at here . Using the approach given in that blog, you can easily validate your dynamic ajax contents at client side. ASP.NET MVC 3 also...

Moving ASP.NET MVC Client Side Validation Scripts to Bottom by imran_ku07

Introduction: ASP.NET MVC 2 makes it very easy to enable client side validation in your application, due to which your application users will see the feedback immediately before your form will submit anything to the server. ASP.NET MVC 2 enable client...

ASP.NET MVC with JQuery Validation and ValidationSummary by imran_ku07

Introduction: One of the great feature of ASP.NET MVC 2 is the support of client side validation. Client side validation in ASP.NET MVC 2 is possible with ASP.NET Ajax(MicrosoftMvcValidation.js) and jQuery(MicrosoftMvcJQueryValidation.js) libraries. Both...

Race Condition in AsyncController by imran_ku07

Introduction: ASP.NET MVC 2 provides AsyncController which enables you to define controller actions that run asynchronously. AsyncController become very useful in IO bound tasks, for example calling a remote web service or query large amounts of data...

Model Binder For Two Dimensional Array by imran_ku07

Introduction: One of the feature that I really like most in ASP.NET MVC is Model Binding. ASP.NET MVC model binding makes it easy to bind action method parameters with incoming HTTP request data. By default DefaultModelBinder is responsible for binding...
Filed under: , , ,

ASP.NET MVC Client Side Validation With Ajax.BeginForm by imran_ku07

Introduction: The ASP.NET MVC Ajax.BeginForm HTML helper make it very easy to submit form asynchronously and allows to perform partial page updates. That's why lot of developers likes to use Ajax.BeginForm HTML helper. In my last blog post I talked about...

ASP.NET MVC Client Side Validation With Dynamic Contents by imran_ku07

Introduction: There are lot of occasions when developers do not let the users to fill the complete form at once, instead developers use wizards steps to get the different information from users at different steps. For example, ASP.NET(Web Form) Wizard...
More Posts Next page »