---
title: "auto format date of united states format in MVC 4"  
description: "auto format date of united states format in MVC 4"  
author: "Mark Devid"  
published: 2013-03-09  
updated: 2013-03-09  
canonical: https://www.mindstick.com/forum/632/auto-format-date-of-united-states-format-in-mvc-4  
category: "asp.net mvc"  
tags: ["asp.net mvc"]  
reading_time: 1 minute  

---

# auto format date of united states format in MVC 4

Hi [Expert](https://www.mindstick.com/articles/13120/an-expert-financial-advice-will-improve-your-finances)!

I have one [textbox](https://www.mindstick.com/forum/12714/dynamic-textbox-in-gridview) in my [MVC](https://www.mindstick.com/forum/155803/define-cache-profile-in-mvc) 4 project. In this textbox [user](https://www.mindstick.com/articles/13001/multi-statement-table-valued-user-defined-function-in-sql-server) entered [date](https://yourviews.mindstick.com/story/3869/propose-day-2024-exciting-date-ideas-for-you-and-your-partner) of US [format](https://www.mindstick.com/forum/162083/how-to-convert-ost-files-into-pst-format). I want to [auto](https://www.mindstick.com/forum/33810/remote-view-in-android-auto-cancel-custom-notification) set US format date during entered or after leave the textbox.

US format date as following

12/31/1989

Please help me!

Thanks in [advance](https://www.mindstick.com/blog/33258/jee-mains-and-jee-advance-exams)!

## Replies

### Reply by AVADHESH PATEL

Hi Mark!

You could try following line of code

<script src="../../Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>\
<script src="../../Scripts/jquery.maskedinput.js" type="text/javascript"></script>\
<script type="text/javascript">\
jQuery(function ($) {\
$("#date").mask("99/99/9999");\
});\
</script>

@Html.TextBox("date", null)

Note:\
"jquery-1.7.1.min.js" provided by MVC application\
"jquery.maskedinput.js" you can download from following link

[https://raw.github.com/digitalBush/jquery.maskedinput/1.3.1/dist/jquery.maskedinput.min.js](https://raw.github.com/digitalBush/jquery.maskedinput/1.3.1/dist/jquery.maskedinput.min.js)


---

Original Source: https://www.mindstick.com/forum/632/auto-format-date-of-united-states-format-in-mvc-4

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
