Reputation: 3
I'm building a Form with the following code
<h1>Opzoeken</h1>
@using (Ajax.BeginForm(
new AjaxOptions {
HttpMethod = "get",
InsertionMode = InsertionMode.Replace,
UpdateTargetId = "ZoekResultaat" }))
{
<input type="search" name="searchterm" /> <br />
<input type="submit" name="Externe" />
<input type="submit" name="Leveranciers" />
<input type="submit" name="Contracten" />
}
But no matter what browser I debug in the buttons always have "Verzenden" instead of the assigned name.
detais: it's an mvc app and I checked the css nothing is changing the name off the buttons in there.
Upvotes: 0
Views: 55
Reputation: 2799
Use value=""
to override the text the button displays, Verzenden
is default for the Dutch language, which is automatically detected. For English people it will show Submit
, etc.
<input type="search" name="searchterm" /> <br />
<input type="submit" name="Externe" value="Externe" />
<input type="submit" name="Leveranciers" value="Leveranciers" />
<input type="submit" name="Contracten" value="Contracten" />
Upvotes: 1