How to include / import a namespace in an MVC View

Tired of all of those crazy-long namespaces all over your view?

Add the using statement to your view if you are using the Razor engine:



@using My.Namespace.Path 

@{ ViewBag.Title = "My Page"; ... } <html goes here> ... </html>

OR

Add the import statement If you are using the ASP.NET (C#) engine:



<%@ Import Namespace="My.Namespace.Path" %> 

<html goes here>
    ...
</html>



Your Thoughts?