Skip to content

Instantly share code, notes, and snippets.

@nberardi
Created June 1, 2011 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nberardi/1003247 to your computer and use it in GitHub Desktop.
Save nberardi/1003247 to your computer and use it in GitHub Desktop.
@TextSearchField("test", "test", true)
@helper TextSearchField(string name, string label, bool autocomplete)
{
<div class="searchCrit">
<label for="@name">@label</label>
@if(autocomplete) {
<input type="text" name="@name" class="autocompleteField" />
}
else {
<input type="text" name="@name" />
}
</div>
}
<div class="searchCrit">
<label for="test">test</label>
<input type="text" name="test" class="autocompleteField" />
</div>
@nberardi
Copy link
Author

nberardi commented Jun 1, 2011

If you remove the "@" in front of the "if" or remove the closing characters on the both cause it to fail.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment