hello
I am using DNN 4.8.2. My module contains many user controls. I have created *.ascx.resx file for each user control.
I want to use resource for .ascx page defined in corresponding .resx file.
suppose my General.ascx.resx file contain following Key value pair
key->lbl_Name,value->Name
& General.ascx page contains asp Label & I want assign above resource string to Text property of Label
I tried following ways but nothing is working,Every thing Failed
1. Text='<%= Resources.lbl_Name%>' //for this it doesnt show any thing
2. Text='<%$ Resources.lbl_Name%>' //for this it throws exception saying that object lbl_Name is not found
3. Text='<%= Resources:lbl_Name%>' //for this it doesnt show any thing
4. Text='<%$ Resources:lbl_Name%>' //for this it throws exception saying that object lbl_Name is not found
5. Text='<%$ Resources:General,lbl_Name%>' //for this it throws exception saying that object lbl_Name is not found
Any knows Solution then Please Let me Know
Help Me
-Snehal