Skip to content

Instantly share code, notes, and snippets.

@nickberardi
Created June 1, 2011 20:33
Show Gist options
  • Select an option

  • Save nickberardi/1003247 to your computer and use it in GitHub Desktop.

Select an option

Save nickberardi/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>
@nickberardi

Copy link
Copy Markdown
Author

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