My ASP.NET application is localized (by using resources) to many cultures. What I need is to find all these cultures (in runtime) and for example fill a DropDownList.
I have code which does that in windows applications – buids collection of available cultures by seeking satellite assemblies.
But what about web apps? It’s possibe to find satellite assemblies? Or this can be done some other way?
Any suggestions?
Thanks
I have idea: iterate through all ..resx files in application’s virtual directory and collect different culture names this way. I haven’t tried this yet, but I think this should give me expected result.