I need to change the culture of my string to Arabic.
this code:
<%# Eval("NewsDate","{0: dddd dd / MMMM / yyyy }").ToString() %>
will show me the following results: sunday 01 / may / 1994
I tried to show it in Arabic, so it will look like this: Ψ§ΩΨ§ΨΨ― 01 -Ω
Ψ§ΩΩ - 1994
<%# Eval("NewsDate","{0: dddd dd / MMMM / yyyy }").ToString("{0}:",System.Globalization.CultureInfo.CreateSpecificCulture("ar-KW")) %>
I added this line to my web.config:
<globalization culture="ar-KW" uiCulture="ar-KW"/>
but it does not work!
any suggestions please?
source share