c# - How to access a local ressource in an aspx file -
i'm bit new aspx (i have don mvc in past)and may sound silly people, i'm bit stuck: have page, new.aspx located in subfolder (incident/new.aspx) , need access resource file globalisation purpose. have created new.aspx.resx file in app_localresources folder pops me resource file not found when call getlocalresourceobject(mykey) in page codebehind.
am missing ?
try global resource data using method.
globalresourcestring = (string)getglobalresourceobject("new.aspx.resx", "key");
Comments
Post a Comment