Hi
I used below code for separate number
cc1:MaskedEditExtender ID="MEE2" runat ="server" TargetControlID="Txtprice1" Mask="999,999,999" MessageValidatorTip="true" MaskType="Number" InputDirection="RightToLeft" AcceptNegative="Left" DisplayMoney="None" ErrorTooltipEnabled="True" />
but it didn't work in tablet (andriod Os) I mean when I want enter number it just enter 1 number after that it change keyboad to alphabet?
is there any way that I can solve this problem?
or is there other code that I can replace it with above code?
Best Regards
Neda
This Way:
<script src="../Scripts/jquery-1.3.2.min.js" type="text/javascript"></script> <script src="../Scripts/jquery.maskedinput-1.2.2.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { //Input Mask for landline phone number $("#<%=txt_createdBefore.ClientID%>").mask("(999) 9999-9999 Ext.9999"); }); </script>
Ref:http://forums.asp.net/t/1788725.aspx
if you want number like 999,999,999 then
$("#<%=txt_createdBefore.ClientID%>").mask("999,999,999");
if your number is 999,999,999,999 then
$("#<%=txt_createdBefore.ClientID%>").mask("999,999,999,999");
Thank You.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.