Doing a ASP page for mobiles I need to be able to access .resx diractly from code which is in C# (no javascript, mobiles don't like javascript...)
And yes i NEED to do this in code behind for silly reasons...
Any ideas?
Found the solution
using System.Resources; using System.Globalization; using System.Threading; GetLocalResourceObject("YourResourceName").ToString();
You just put in the name you give the resource in your resx file [:)]
Tryed that, didn't help and by the way ironacly C# is mostly javascript...
Joy :(