Someone had done this before. You would get the month name in english, and then translate it to your language.Dim strMonthname
select case Monthname(Month(Now))
case "January"
strMonthname = "Janu"
case "February"
strMonthname = "Febu"
...
...
case "June"
strMonthname = "Juni"
...
Then you would do "Response.Write strMonthname" on your pages.
That's just an example. But you get the general idea. You could probably place it in your config file, if you know what you're doing.
Edited by - Davio on 13 June 2001 10:36:44