I'm creating WebResources.resx file with several string messages I'd like to categorize:
Signup_Status_Inactive Signup_Status_Reserved etc...
Since it's just an XML file in the background, is it possible to create parent/child relationships so I don't have to prefix related strings and follow a better dot notation?
To get around this I can create a class with some properties accessed through proper dot notation, ie StatusMessages.Signup.Inactive - but that's just extra work.
Is there only one level to the string component of the .resx files?
Additionally, how do you output session variables as a part of the resx value - ie: "Your Card #" + HttpContext.Current.Session["ReservedCardNum"] + " has been reserved for you."
Thanks.