Two significance use of @using keyword in razor view
1) include name space
@using MvcContrib.UI.Grid
2) @using can also be used with bock of code to ensure all objects are dispose when they go to out of scope
@using(Html.BeginForm())
{
// your code
}