Thank you to both replies. I should add what you both described BEFORE my ContentPlaceholder, yes? Before I add your suggestion my content page will look like this.....
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" %><script runat="server"></script><asp:Content ID="Content1" ContentPlaceHolderID="leftContent" Runat="Server"></asp:Content>
And now when I add what you suggested it will look like this, yes?
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" %>HtmlMeta meta; meta = new HtmlMeta();meta.Name = "description"; meta.Content = "description goes here";Page.Header.Controls.Add(meta); <script runat="server"></script><asp:Content ID="Content1" ContentPlaceHolderID="leftContent" Runat="Server"></asp:Content>
I'm just checking that I'm putting it in the correct place, yes?
Regards LisaMac