When I use the Visual Studio menu Tool -> Generate Local Resource, it changed aspx file by adding meta attributes to controls. But it doesnt do so for user controls that I have created.
For example, If I have used a control in the page
<myControl:SpecialLabelControl ID="myLabel" runat="server" Text="Localize Me!" />
I want "Localize Me!" to go in the resource file and a meta attribute added to the SpecialLabelControl.
How can I do this?
How does the tool create resource strings for built in controls automatically? Does it read an attribute of the property? How can I make the tool do the same to my control?