bootstrap-snippets-visual-studio
bootstrap-snippets-visual-studio copied to clipboard
Allow snippets to be inserted within Razor Code Blocks
When using Razor Syntax in a .cshtml file, please allow snippets to be inserted within code blocks, ie:
@using(Html.BeginForm(...))
{
<div> <!-- Or Any HTML Element -->
// Snippets work here
</div>
}
@using(Html.BeginForm(...))
{
// Snippets do not work here.
}
Thanks for this great tool! Saves me lots of time scaffolding Bootstrap HTML - Especially forms. :)