---
title: "Apply tool tip to a field in mvc3 application"  
description: "Apply tool tip to a field in mvc3 application"  
author: "marcel ethan"  
published: 2013-10-22  
updated: 2013-10-22  
canonical: https://www.mindstick.com/forum/1711/apply-tool-tip-to-a-field-in-mvc3-application  
category: "asp.net mvc"  
tags: ["asp.net mvc"]  
reading_time: 1 minute  

---

# Apply tool tip to a field in mvc3 application

I have a [field](https://www.mindstick.com/forum/160867/does-mindstick-provide-training-for-field-marketing) "[name](https://yourviews.mindstick.com/view/87450/how-to-generate-a-brand-name-using-linkedin-comprehensive-guide)" in my [model](https://yourviews.mindstick.com/view/81334/america-is-reopening-after-corona-lockdown-but-on-swedish-model) as follows

```
[StringLength(50,MinimumLength=2)]
public string name{ get; set; }
```

\

And in [view](https://yourviews.mindstick.com/view/84701/layoffs-in-google-india-2023-view) its like as follows

```
 <li>
     <label >
     NAME</label>
     @Html.TextBoxFor(x => x.name)
 </li>
```

Can anybody please help me to [put](https://answers.mindstick.com/qa/111890/can-you-explain-the-difference-between-put-and-post-http-methods) a lengthy [tool tip](https://www.mindstick.com/articles/12942/how-to-show-tool-tip-in-html-using-jquery) for this field. Its in MVC.


---

Original Source: https://www.mindstick.com/forum/1711/apply-tool-tip-to-a-field-in-mvc3-application

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
