Ecom:CustomerCenter.SearchForm.End

Version: - string  

Summary

Returns the search form end tag.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:CustomerCenter.SearchForm.End")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:CustomerCenter.SearchForm.End"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:CustomerCenter.SearchForm.End"); }

Outputting the template tag

<!--@Ecom:CustomerCenter.SearchForm.End-->

Check if string has a value

<!--@If Defined(@Ecom:CustomerCenter.SearchForm.End)--> Let's output this tag here: <strong><!--@Ecom:CustomerCenter.SearchForm.End--></strong> <!--@EndIf(@Ecom:CustomerCenter.SearchForm.End)-->