meta-attribute

Meta Attribute in Asp.NET

Hi, I was wondering what the logic is behind meta attribute. For example in asp.net for localization we can use something like this to localize a control : <asp:Button ID="Button1" runat="server" Text="DefaultText" meta:resourcekey="Button1" /> So what's the logic of meta:resourcekey="Button1".Is there any different usage of meta ...

Hide editor-label for public property when calling EditorFor(...)?

When calling Html.EditorFor(m => m), where m is a public class with public properties, a hidden input and a label are displayed for properties with the [HiddenInput] attribute. How can I hide the label without making it private or creating an editor template? Example public class User { [HiddenInput] public Guid ID { get; s...