---
title: "US Fax Number auto format - can anyone help me please?"  
description: "US Fax Number auto format - can anyone help me please?"  
author: "Jayden Bell"  
published: 2013-03-09  
updated: 2013-03-09  
canonical: https://www.mindstick.com/forum/633/us-fax-number-auto-format-can-anyone-help-me-please  
category: "asp.net mvc"  
tags: ["asp.net mvc"]  
reading_time: 1 minute  

---

# US Fax Number auto format - can anyone help me please?

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 Fax number 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 Fax number during entered or after leave the textbox.

US format Fax number as following

+1-123-5695847

Please help me!

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

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 ($) {
        $("#fax").mask("+1-"+"999-9999999");
    });
</script>@Html.TextBox("fax", 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/633/us-fax-number-auto-format-can-anyone-help-me-please

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
