以丹麦语设置价格格式,右侧带有货币符号

Format price in Danish with curency symbol on right(以丹麦语设置价格格式,右侧带有货币符号)
本文介绍了以丹麦语设置价格格式,右侧带有货币符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将Eval()方法中的价格格式化为丹麦语价格,并在右侧的C#中使用货币符号?

我的.aspx页面中有以下内容来显示价格:

<td class="text-right price-col"><%# Eval("Price", "{0:c}") %></td>
但这会将价格显示为例如KR。79,00..我想要的是79,00 kr.

我看到了这篇帖子Changing Currency Symbol location in System.Globalization.NumberFormatInfo,并将此方法添加到代码隐藏中,这给了我想要的结果:

<td class="text-right price-col"><%# PriceFormat(79) %></td>

protected string PriceFormat(decimal price) {
        System.Globalization.CultureInfo danish = new System.Globalization.CultureInfo("da-DK");
        danish = (System.Globalization.CultureInfo)danish.Clone();
        // Adjust these to suit
        danish.NumberFormat.CurrencyPositivePattern = 3;
        danish.NumberFormat.CurrencyNegativePattern = 3;
        decimal value = price;
        string output = value.ToString("C", danish);

        return output;
    }

但是,我是否可以将PriceFormat方法与eval()方法结合使用,以获得正确的价格作为参数,或者修改eval()方法中的格式以执行相同的操作? 在本例中,我只是插入一个静态值作为参数(79)。

推荐答案

eval返回object,因此您可以将其转换为decimal并将其作为参数传递给PriceFormat方法:

<%# PriceFormat((decimal)Eval("Price")) %>

这篇关于以丹麦语设置价格格式,右侧带有货币符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)