Accessing controls within a datalist footer template

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Accessing controls within a datalist footer template

    Hi,

    I am a bit green when it comes to .net development so
    please excuse me if this question is obvious or has been
    asked before...

    I am trying to programmatically access a label control
    within a datalist footer template using asp/vb.net. I have
    been searching
    through the documentation but can only find reference to
    creating a footer template programatically, rather than
    accessing the controls within one.

    If anyone has done this, or can point me in the direction
    of some sample code, that would be fantastic!

    Cheers!

    Paul Maidment Guest

  2. Similar Questions and Discussions

    1. Dropdown in footer template of datagrid
      I have been able to create and populate dropdowns in both the item template tag and the edit template tag. When I try to add one to the footer the...
    2. Access to controls in footer template
      All, I have created a footer template which I use to add a new entry via my datagrid. I also have an edit template to allow the user to edit a...
    3. Passing Values from Header to footer of an DataList
      Hi I have a TextBox and a Button in Header of a DataList and a Label in the Footer of a DataList. How to pass the value in the TextBox to Lable on...
    4. Accessing datagrid footer
      There is probably a simple answer to this question - using code behind, in my a grid itemcommand event I need to reference cells in the footer row....
    5. Accessing controls in template column with JavaScript
      Hi Guys & Gals, Is it possible to access controls (e.g. a CheckBox) within a template column in a datagrid with JavaScript? I would like to...
  3. #2

    Default Re: Accessing controls within a datalist footer template

    try this paul.

    dataList_ItemDataBound (object sender, DataItemEventArgs e) {
    if (e.Item.ItemType == ItemType.Footer) {
    Label l = (Label)e.Cells[0].Controls("labelname");
    l.Text = "New Text";
    }
    }

    I don't have access to a program that I have done this in where you pull
    out the cells and find a control with in them. But I think you will get
    the basic understanding of what has to be done.

    Nick

    Paul Maidment wrote:
    > Hi,
    >
    > I am a bit green when it comes to .net development so
    > please excuse me if this question is obvious or has been
    > asked before...
    >
    > I am trying to programmatically access a label control
    > within a datalist footer template using asp/vb.net. I have
    > been searching
    > through the documentation but can only find reference to
    > creating a footer template programatically, rather than
    > accessing the controls within one.
    >
    > If anyone has done this, or can point me in the direction
    > of some sample code, that would be fantastic!
    >
    > Cheers!
    >
    Nick Berardi Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139