blackik 0 Newbie Poster

Hi, In what way the Visual Studio generates the 'full resources names' from control resource tag in aspx file? For expample in .aspx file I have a textBox control with resource tag:

meta:resourcekey="ASPxComboBoxResource5

. In resx file I could find this:

ASPxComboBoxResource5.DisplayFormatString, ASPxComboBoxResource5.DropDownButton.Text, ASPxComboBoxResource5.DropDownButton.ToolTip, ASPxComboBoxResource5.ItemImage.AlternateText, ASPxComboBoxResource5.ItemImage.DescriptionUrl, ASPxComboBoxResource5.LoadingPanelImage.AlternateText

and so one...

I want to generate resources names with their properties as above manually(progrmatically) from external aspx file(or dll) where the resources tags already exists. In other words I want to know which control( or page) property requires localization. In my application(it is a WebSite) I don't have any LocalizableAttributes at my controls or their properties in code behind but as you can see the resources are generating, how Visual Tool does do it?