| Stefan [MSFT] 2006-06-01, 7:15 pm |
| Hi Tom,
do you mean to hold the value of a meta tag in a placeholder?
That can be done.
E.g. using this:
<%
HtmlPlaceholder htmlph =
Microsoft.ContentManagement.Publishing.Current.Posting.Placeholder["MetaData"]
as HtmlPlaceholder;
string MetaContent = htmlph.Html;
%>
<META name="myMetaData" content="<% =MetaContent %>">
Cheers,
Stefan
--
This posting is provided "AS IS" with no warranties, and confers no rights
New to MCMS?
Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
Check out the new book as well: Advanced MCMS development:
http://tinyurl.com/8ugwj
----------------------
"Tom" <Tom@discussions.microsoft.com> wrote in message
news:CF729585-97E0-4467-9498-20BA31C8FE99@microsoft.com...
> We want to utilize Mondosearch and in a discussion with Mondosearch they
> suggested I contact CMS reagrding this important question.
>
> Is there a way to associate a placeholder with ameta tag value that will
> defined in the head section of each page? If so, please advise as this
> will
> greatly enhance the search engine capabilities.
>
> Thanks
>
> Tom
>
|