Alias: Umbraco.Textbox
Returns: String
Textbox is an HTML input control for text. It can be configured to have a fixed character limit. The default maximum amount of characters is 500 unless it's specifically changed to a lower amount.
{% tabs %} {% tab title="v.8" %}
@{
if (Model.HasValue("pageTitle")){
<p>@(Model.Value("pageTitle"))</p>
}
}{% endtab %}
{% tab title="v.7" %}
@{
if (Model.Content.HasValue("pageTitle")){
<p>@(Model.Content.GetPropertyValue<string>("pageTitle"))</p>
}
}{% endtab %} {% endtabs %}


