﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebInput - Masking for Currency and decimals and numerics</title><link>http://www.intersoftsolutions.com/Community/WebInput/Masking-for-Currency-and-decimals-and-numerics/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Masking for Currency and decimals and numerics</title><link>http://www.intersoftsolutions.com/Community/WebInput/Masking-for-Currency-and-decimals-and-numerics/</link><pubDate>Wed, 20 Apr 2011 02:28:12 GMT</pubDate><dc:creator>lili</dc:creator><category>WebInput</category><category>webinput mask expression format edit</category><description>&lt;p&gt;Hi Huzefa,&lt;/p&gt;
&lt;p&gt;I am really sorry about the attachment. Here's I re-attach my sample for you. In my sample you can restrict the input for Currency type until 3 digits after decimal.&lt;/p&gt;
&lt;p&gt;Hope it helps.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Lili Khiung&lt;/p&gt;</description></item><item><title>Masking for Currency and decimals and numerics</title><link>http://www.intersoftsolutions.com/Community/WebInput/Masking-for-Currency-and-decimals-and-numerics/</link><pubDate>Tue, 19 Apr 2011 14:00:42 GMT</pubDate><dc:creator>huzzy143</dc:creator><category>WebInput</category><category>webinput mask expression format edit</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Can i give a Mask to this so as to restrict the input for Currency type till 3 digits after decimal?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Huzefa&lt;/p&gt;</description></item><item><title>Masking for Currency and decimals and numerics</title><link>http://www.intersoftsolutions.com/Community/WebInput/Masking-for-Currency-and-decimals-and-numerics/</link><pubDate>Mon, 18 Apr 2011 04:40:26 GMT</pubDate><dc:creator>huzzy143</dc:creator><category>WebInput</category><category>webinput mask expression format edit</category><description>Dear Lili,&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Thanks for the solutions. but i think you have forgot to attach the sample.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Can you please attach it?&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Thanks&lt;/div&gt;
&lt;div&gt;Huzefa&lt;/div&gt;</description></item><item><title>Masking for Currency and decimals and numerics</title><link>http://www.intersoftsolutions.com/Community/WebInput/Masking-for-Currency-and-decimals-and-numerics/</link><pubDate>Mon, 18 Apr 2011 00:05:13 GMT</pubDate><dc:creator>lili</dc:creator><category>WebInput</category><category>webinput mask expression format edit</category><description>&lt;p&gt;Hi Huzefa,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;1) You can set this in your aspx code:&lt;/p&gt;&lt;pre&gt;&amp;lt;DisplayFormat format="-$ #,##0.000" isenabled="True" type="Number"&amp;gt;
&amp;lt;/DisplayFormat&amp;gt;&lt;/pre&gt;
&lt;p&gt;2) Choose the simple input in WebInput.NET Wizard an the set the property NumericInput to true.&lt;/p&gt;
&lt;p&gt;3) Set this code in your aspx:&lt;/p&gt;&lt;pre&gt;&amp;lt;DisplayFormat Format="#,##0" IsEnabled="True" Type="Number"&amp;gt;
&amp;lt;/DisplayFormat&amp;gt;&lt;/pre&gt;
&lt;p&gt;I also attach the sample I made based on your issue. Hope it helps.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Lili Khiung&lt;/p&gt;</description></item><item><title>Masking for Currency and decimals and numerics</title><link>http://www.intersoftsolutions.com/Community/WebInput/Masking-for-Currency-and-decimals-and-numerics/</link><pubDate>Sat, 16 Apr 2011 11:58:52 GMT</pubDate><dc:creator>huzzy143</dc:creator><category>WebInput</category><category>webinput mask expression format edit</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I have a situation where i want Mask for following;&lt;/p&gt;
&lt;p&gt;1) Currency -&amp;gt; In this i want that the user can enter any number of digit but should end with 3 decimal places. Something like [0-9]*.000&lt;/p&gt;
&lt;p&gt;Valid expression&lt;/p&gt;
&lt;p&gt;12345.000&lt;/p&gt;
&lt;p&gt;12345.123&lt;/p&gt;
&lt;p&gt;12345.12345 -&amp;gt; 12345.123&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;2) Decimal -&amp;gt; In this user is allowed decimal digit with any number of decimal places.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;3) Numeric -&amp;gt; In this the user should not be allowed any decimals, only numbers.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Can you please tell me what Mask should i use in following cases.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Huzefa&lt;/p&gt;</description></item></channel></rss>