How to Show Your Meta Description and Keywords on an ASP Master Page
•Asp-net
So today’s challenge was to display the Title, Meta description and meta tags on a site I am currently working on for troubleshooting and SEO reasons. The solution I came up with was to place the following code in the code behind of the masterpage. protected void Page_Load(object sender, EventArgs e) { HtmlHead headTag = […]