Click here to Skip to main content
15,881,856 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using Enterprise library in my application. I want to pass error message from resource file.

How to pass resouce file message to class(test.cs) page.



donor.cs (page)
C#
[Required(ErrorMessage="City Name Cannot be empty")]

        public string CityName
        {
            get { return _cityName; }
            set { _cityName = value; }
        }


I want to get this error message from resource file,

my Resource1.resx page contains

Name : city.text

value : City Name Cannot be empty


I have tried [Required(ErrorMessage=Resource1.city.text)]

but this is not working

This is my entity class.
Posted
Updated 1-Oct-12 2:11am
v3

1 solution

It's simple and direct pickup of text from resource file.

Did you try? There are various sample on net on how to define a resource file and use it in your application, couple of them:
Using Resource Files In ASP.NET[^]
Resource Files in ASP.NET 2.0[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900