Force ASP.NET textbox to display currency with $ sign(强制 ASP.NET 文本框显示带有 $ 符号的货币)
问题描述
有没有办法让 ASP.NET 文本框只接受货币值,并且在验证控件时,预先插入 $ 符号?
Is there a way to get an ASP.NET textbox to accept only currency values, and when the control is validated, insert a $ sign beforehand?
例子:
10.23 变为 10.23 美元
1.45 美元保持 1.45 美元
10.a由于不是有效数字而引发错误
10.23 becomes $10.23
$1.45 stays $1.45
10.a raises error due to not being a valid number
我有一个用于验证数字是否有效的 RegularExpressionValidator,但我不知道如何将 $ 符号强制输入文本.我怀疑 JavaScript 可能会工作,但想知道是否有其他方法可以做到这一点.
I have a RegularExpressionValidator that is verifying the number is valid, but I don't know how to force the $ sign into the text. I suspect JavaScript might work, but was wondering if there was another way to do this.
推荐答案
ASP.NET MaskedEditAJAX Control Toolkit 中的 控件可以完成您的要求.
The ASP.NET MaskedEdit control from the AJAX Control Toolkit can accomplish what you're asking for.
这篇关于强制 ASP.NET 文本框显示带有 $ 符号的货币的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:强制 ASP.NET 文本框显示带有 $ 符号的货币
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 使用 rss + c# 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01