In a aspx page i have one repeater control with ThumbViewer , when user mouse overs on each image of the ThumbViewer ,i need to show the Tooltip with its imagename.
imagename is in database
i tried in this way
<bri:ThumbViewer ID="ThumbViewer1" runat="server" ThumbUrl='<%# Eval("EventImageLocation", "images/{0}") %>'
Height="85" Width="85" />
<asp:Label runat="server" ID="lblimgname" Text='<%#Bind("Description") %>' ToolTip='<%#Bind("Description") %>'></asp:Label>
it is comming side of ThumbViewer
i put <br> all images r comming 1 by 1 like pillar
i does want like that
images should display in one line with its image names
i want names to come below of ThumbViewer
please help me
kaja srinivas