Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.57 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Adding value to TextBox inside Datalist ItemTemplate
  2. TextBox txt =(TextBox)dtlist.FindControl("txt_image_name");
  3. txt.Text = edit_selected_image;
  4.        
  5. <EditItemTemplate>
  6.  
  7.             PictureName:<asp:Label id="PicutreLabel"
  8. Text='<%# DataBinder.Eval(Container.DataItem, "yourFIleNamePath") %>' runat="server"/> <br />
  9. <asp:LinkButton id="UpdateButton" Text="Update" CommandName="Update" runat="server"/>
  10.  
  11. <asp:LinkButton id="DeleteButton" Text="Delete" CommandName="Delete" runat="server"/>
  12.  
  13. <asp:LinkButton id="CancelButton" Text="Cancel" CommandName="Cancel" runat="server"/>