gpt4 book ai didi

javascript - 需要帮助从 C# 调用 javascript

转载 作者:行者123 更新时间:2023-11-28 09:18:39 25 4
gpt4 key购买 nike

我需要将值格式化为货币,例如($1,000),我有代码,但我需要知道如何从 C# 调用 java 脚本

aspx.cs页面(代码页

x= 2345
textbox1.text = x.ToString();// i need the format currency here

JavaScript

function formatCurrency(num)
{
num = num.toString().replace(/\$|\,/g,'');
if(isNaN(num))
num = "0";
sign = (num == (num = Math.abs(num)));
num = Math.floor(num*100+0.50000000001);
cents = num%100;
num = Math.floor(num/100).toString();
if(cents<10)
cents = "0" + cents;
for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
num = num.substring(0,num.length-(4*i+3))+','+
num.substring(num.length-(4*i+3));
return (((sign)?'':'-') + '$' + num + '.' + cents);
}

请帮助我如何从c#文件中调用格式货币,我需要在文本框中显示格式值。

最佳答案

在 C# 中使用此类代码。我认为您不需要 JavaScript 来格式化货币值。

decimal somemoney = 2345m;
string html = String.Format("{0:C}", somemoney);
textbox1.text = html;

关于javascript - 需要帮助从 C# 调用 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15291922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com