I am trying to build a transformation that will switch between video players. I have the following code in the transformation. when I try to preview, I get an error that the content is not available. can someone take a look at this code to see if anything stands out?
Thanks.
Craig
<% if(Eval("Link").ToString().Contains("brightcove")) { %>
">
" onClick="window.open(this.href,'video','top=50, left=50, width=800, height=500, toolbar=no, menubar=no, location=no, scrollbars=no, resizable=no'); return false;" class="video-thumb" title="<%# Eval("Name") %>">
" />
" onClick="window.open(this.href,'video','top=50, left=50, width=800, height=500, toolbar=no, menubar=no, location=no, scrollbars=no, resizable=no'); return false;" title="<%# Eval("Name") %>"><%# Eval("Name") %>
<% }
else { %>
">
" class="video-thumb fancybox-video" title="<%# Eval("Name") %>">
" />
" title="<%# Eval("Name") %>"><%# Eval("Name") %>
<% } %>

