Is there a way in the CMS to view custom Meta Fields for an asset as you can with the "Content" panel?
I am developing a versioning system for my CSS and JS files, for cache busting. I store the version number as a Meta Field for the asset
asset.SaveMetaField("version", "1.2.0");
I then check for a version number when rendering the link tag in my wrapper
Asset file = Asset.Load(peData.Raw["css_link_internal"]);
string fileVer = file.Meta["version"];
string fileParam = "";
if (!String.IsNullOrEmpty(fileVer))
fileParam = "?v=" + fileVer;
Out.WriteLine(ServicesOutput.RenderCSSLink(file, qString: fileParam));
Is this an appropriate situation to use Meta Fields over Content Fields?