D
David C
I have a DataList that displays photos and is bound to a list of files. Is
there a way to combine the value of a variable (strpath) with the #
Bind(...) in the ImageURL field. Below is what I have now.
<asp:ImageButton ID="ImgBtn1" runat="server"
CausesValidation="false" CommandName="Select"
AlternateText='<%# Bind("Name") %>'
ImageUrl='<%# Bind("FullName") %>'
CommandArgument='<%# Bind("FullName") %>'
OnClientClick="return showpic(this);"
OnCommand="ImgBtn1_Command" Height="100" Width="150" />
I would like to add the value of strpath to the # Bind("FullName").
Thanks.
David
there a way to combine the value of a variable (strpath) with the #
Bind(...) in the ImageURL field. Below is what I have now.
<asp:ImageButton ID="ImgBtn1" runat="server"
CausesValidation="false" CommandName="Select"
AlternateText='<%# Bind("Name") %>'
ImageUrl='<%# Bind("FullName") %>'
CommandArgument='<%# Bind("FullName") %>'
OnClientClick="return showpic(this);"
OnCommand="ImgBtn1_Command" Height="100" Width="150" />
I would like to add the value of strpath to the # Bind("FullName").
Thanks.
David