I'm using ASP.NET MVC and I'd like all user entered string fields to be trimmed before they're inserted into the database. And since I have many data entry forms, I'm looking for an elegant way to trim all strings instead of explicitly trimming every user supplied string value. I'm interested to know how and when people are trimming strings.

I thought about perhaps creating a custom model binder and trimming any string values there...that way, all my trimming logic is contained in one place. Is this a good approach? Are there any code samples that do this?

link|improve this question

feedback

4 Answers

up vote 39 down vote accepted
  public class TrimModelBinder : DefaultModelBinder
  {
    protected override void SetProperty(ControllerContext controllerContext, 
      ModelBindingContext bindingContext, 
      System.ComponentModel.PropertyDescriptor propertyDescriptor, object value)
    {
      if (propertyDescriptor.PropertyType == typeof(string))
      {
        var stringValue = (string)value;
        if (!string.IsNullOrEmpty(stringValue))
          stringValue = stringValue.Trim();

        value = stringValue;
      }

      base.SetProperty(controllerContext, bindingContext, 
                          propertyDescriptor, value);
    }
  }

How about this code?

ModelBinders.Binders.DefaultBinder = new TrimModelBinder();

Set global.asax Application_Start event.

link|improve this answer
This is exactly what I was looking for. Works beautifully. Thanks. – JohnnyO Nov 18 '09 at 0:08
i'd just replace the code in the inner most {} with this for brevity: string stringValue = (string)value; value = string.IsNullOrEmpty(stringValue) ? stringValue : stringValue.Trim(); – Simon_Weaver Jan 18 '10 at 2:25
Works for me as well . thanks – mazhar kaunain baig Aug 29 '10 at 0:19
This deserves more upvotes. I'm actually surprised the MVC team didn't choose to implement this in the default model binder... – Portman Dec 10 '10 at 17:04
@takepara Great work dude. – Zohaib Apr 24 '11 at 8:17
show 5 more comments
feedback

This is @takepara same resolution but as an IModelBinder instead of DefaultModelBinder so that adding the modelbinder in global.asax is through

ModelBinders.Binders.Add(typeof(string),new TrimModelBinder());

The class:

public class TrimModelBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext,
    ModelBindingContext bindingContext)
    {
        ValueProviderResult valueResult = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
        if (valueResult== null || string.IsNullOrEmpty(valueResult.AttemptedValue))
           return null;
        return valueResult.AttemptedValue.Trim();
    }
}

based on @haacked post: http://haacked.com/archive/2011/03/19/fixing-binding-to-decimals.aspx

link|improve this answer
1  
+1 for a clean solution! You could improve the readability of your code even more by changing the order of the return statements and by negating the condition: if (valueResult == null || string.IsNullOrEmpty(valueResult.AttemptedValue)) return null; – Marius Schulz Sep 25 '11 at 20:52
@MariusSchulz: sweet, I did just that and it looks cleaner already. Thanks.. – Korayem Sep 26 '11 at 15:35
feedback

One improvement to @takepara answer.

Somewere in project:

public class NoTrimAttribute : Attribute { }

In TrimModelBinder class change

if (propertyDescriptor.PropertyType == typeof(string))

to

if (propertyDescriptor.PropertyType == typeof(string) && !propertyDescriptor.Attributes.Cast<object>().Any(a => a.GetType() == typeof(NoTrimAttribute)))

and you can mark properties to be excluded from trimming with [NoTrim] attribute.

link|improve this answer
+1 Good suggestion. – JustinStolle Nov 24 '11 at 6:08
feedback

The best way is to extend .ToString() method in C# 3.0 so that it implements the trim functionality also. This way you dont have to explicitly call Trim method. This is C# 3.0 using Extension methods.

link|improve this answer
Thanks Rasik, but I'm not calling ToString() on any of the fields and as far as I can tell from the MVC source code, nor is the model binder doing that. If I am to depend on an extended version of ToString() for trimming, then I would have to loop through the properties of my model (after binding happens) and call ToString() on all of the strings, which would seem to add a lot of overhead. Did I mis-understand your suggestion? – JohnnyO Nov 11 '09 at 23:28
3  
-1 for saying 'the best way' – Simon_Weaver Jan 18 '10 at 2:03
Read about "separation of concern" - something this example doesn't use IMHO. <sarcasm>Hey - why not override a few operands such as the equals sign (=)? That way we don't even bother having to call the ToString() method!</sarcasm> -1 for effort. – CSharpForEverMore Sep 28 '11 at 14:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.