---
title: "US Zip Code, auto format in mvc!"  
description: "US Zip Code, auto format in mvc!"  
author: "marcel ethan"  
published: 2013-03-09  
updated: 2013-03-09  
canonical: https://www.mindstick.com/forum/634/us-zip-code-auto-format-in-mvc  
category: "asp.net mvc"  
tags: ["asp.net mvc"]  
reading_time: 1 minute  

---

# US Zip Code, auto format in mvc!

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 [zip](https://www.mindstick.com/interview/34182/compress-old-log-files-e-g-zip-after-7-days) [code](https://yourviews.mindstick.com/view/85458/alan-turing-the-mastermind-behind-cracking-the-enigma-code-during-world-war-ii) 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 zip code during entered or after leave the textbox.

\
US format zip code as following

58595

Please help me!

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

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 ($) {\
$("#zip").mask("99999");\
});\
</script>

@Html.TextBox("zip", 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/634/us-zip-code-auto-format-in-mvc

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
