I need to change the culture of my string to Arabic.
this code :
<%# Eval("NewsDate","{0: dddd dd / MMMM / yyyy }").ToString() %>
will show me these 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's not working!
any suggestions please ?

<%@ Page Language="C#" culture="ar-KW">– Dotnet Jan 9 at 10:21