---
title: "Html elements are ignoring name property"  
description: "Html elements are ignoring name property"  
author: "marcel ethan"  
published: 2014-04-10  
updated: 2014-04-11  
canonical: https://www.mindstick.com/forum/2011/html-elements-are-ignoring-name-property  
category: "asp.net mvc"  
tags: ["asp.net mvc"]  
reading_time: 1 minute  

---

# Html elements are ignoring name property

I'm [building](https://www.mindstick.com/blog/23088/which-tonewood-is-suitable-for-building-a-guitar) a [Form](https://www.mindstick.com/forum/6/multi-form-mfc-application) with the following [code](https://yourviews.mindstick.com/view/85458/alan-turing-the-mastermind-behind-cracking-the-enigma-code-during-world-war-ii)

```
<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](https://www.mindstick.com/blog/155254/which-is-the-best-internet-browser) I [debug](https://www.mindstick.com/forum/156/how-to-debug-application-on-the-server) in the buttons always have "Verzenden" [instead of](https://www.mindstick.com/articles/330/triggers-in-sql-server) the assigned [name](https://yourviews.mindstick.com/view/87450/how-to-generate-a-brand-name-using-linkedin-comprehensive-guide).

[detail](https://www.mindstick.com/forum/157518/what-is-svm-algorithm-and-also-explain-it-in-detail): it's an [mvc](https://www.mindstick.com/forum/155803/define-cache-profile-in-mvc) app and I checked the [css](https://www.mindstick.com/forum/514/background-gradient-ie7-css-problem) nothing is changing the name off the buttons in there.

## Replies

### Reply by Pravesh Singh

Hi Marcel,\
You can try this:

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" />
```


---

Original Source: https://www.mindstick.com/forum/2011/html-elements-are-ignoring-name-property

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
