我需要将值格式化为像($ 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# 文件中调用格式货币,我需要在文本框中显示格式值。