Rank: Newbie Groups: Member
Joined: 10/7/2010 Posts: 4
|
Is there a basic sample using Slide control? Im lost on the "<img src>".
<eo:Slide ID="Slide1" runat="server" BigItemHeight="150" BigItemWidth="553"> <BigItemTemplate> <img src='<%#ResolveUrl(Eval("ImageUrl"))%>' /> </BigItemTemplate> </eo:Slide>
c# Slide1.DataSource = myDT; Slide1.DataBind();
|
Rank: Newbie Groups: Member
Joined: 10/7/2010 Posts: 4
|
myDT contains the paths of images
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
There are a number of Slide samples in the sample project. There is nothing special about "<img src=". That is the standard ASP.NET data binding syntax and it really has nothing to do with us. If you are not familiar with that, you can search online about "ASP.NET data binding" and you should be able to find plenty of information about it.
Thanks!
|