User-263151482 posted
In implicit localization, you specify that control properties should automatically be read from a resource file, but you do not need to explicitly specify which properties are localized.
<asp:Button ID="Button1" Runat="server" meta:resourcekey="ButtonResource1" Text="English Button" />
In explicit localization, you set the value of a property by using an expression pointing to a resource file.
<asp:Button ID="Button1" Runat="server" Text="<%$ Resources:LocalizedText, Msg1 %>">
More here.