本文介绍了如何仅在数据表列ASP.NET C#中验证货币?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 如何验证数据表列只有(1,20,000)这样的货币怎么做。 我尝试过: int value1; float value2; if ( int .TryParse(ds.Tables [s] .Rows [i] [ Columncountvalue + 9 ]。ToString(), out value1)||!float.TryParse(ds.Tables) [s] .Rows [i] [Columncountvalue + 9 ]。ToString()。Trim(), out value2)) { if (value1 < = 0 ) { // 提醒消息 } } 我验证货币栏只有数字。现在问题是如果执行此格式语句中的值为(12,000)并显示警告message.how解决此问题。现在如何验证货币。解决方案 Hi Raja, C#内置了货币功能。 请点击以下链接: c# - 验证我的钱 - Stack Overflow [ ^ ] How to validate data table column have only currency like( 1,20,000 ) how to do it.What I have tried:int value1;float value2;if (int.TryParse(ds.Tables[s].Rows[i][Columncountvalue + 9].ToString(), out value1) || !float.TryParse(ds.Tables[s].Rows[i][Columncountvalue + 9].ToString().Trim(), out value2)){ if (value1 <= 0) { //Alert message }}I have validate the currency column have only numbers. now the problem is if the value is (12,000 ) in this format statement is executed and show the alert message.how solve this issue.now how to validate the currency. 解决方案 Hi Raja,C# have built in functions for Currency.Follow below link :c# - Validating my money - Stack Overflow[^] 这篇关于如何仅在数据表列ASP.NET C#中验证货币?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
11-02 14:18