Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ASP.NET Web ページのリピーターに次の行があります。
<%# Eval(123456) %>
自分の番号 (123456) をセパレーター付きで表示したい (このように: 123,456)
私は何をしなければなりませんか?
文字列形式について何か知っています。"{N3}" や "{#,000)" などの文字列形式を使用します。しかし、それは私を助けません。
これを探していますか?
string.Format("{0:n0}", 123456);