Hi, thanks for answering me.
Ok.
1. Yes I do. I have a simple ASPx, here my code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ContentSlider.aspx.cs" Inherits="CMSTemplates_PortalInvexCom_Test_ContentSlider" %>
<%@ Register Src="~/CMSWebParts/Viewers/Effects/ContentSlider.ascx" TagName="ContentSlider" TagPrefix="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Content Slider Test</title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="manScript" runat="server" />
<uc1:ContentSlider runat="server" ID="ContentSlider" ClassNames="CMS.File" TransformationName="CMS.File.ImageSliderV2"
OrderBy="FileName" DivWidth="982" DivHeight="265" JsFadeIn="1000" JsFadeOut="1000" JsAutoStart="true" EnableViewState="false" />
</form>
</body>
</html>
2. No, it doesn't have any JS errors.
3. Yes, I do. I created another transformation called ImageSliderV2. Here its my code:
<a href="<%# GetFileUrl("FileAttachment") %>" title="<%# Eval("FileName", true) %>">
<img src="<%# GetFileUrl("FileAttachment") %>" alt="<%# Eval("FileName", true) %>" width="100%" height="100%" border="0" />
</a>
Regards