Ask a Question related to ASP.NET General, Design and Development.
-
Paul Maidment #1
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
-
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... -
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... -
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... -
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.... -
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... -
Nick Berardi #2
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



Reply With Quote

