How to add a meta tag dinamically?
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Add a id="someUniqeName" and runat="server" to your head tag then you can acces the innerHTML property from your code like this: someUniqeName.InnerHTML and add your meta tags like so... But if you are trying to add meta tags such ash cache control or encoding you will be better off with Response.ApendHeader() method. Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!