Wrox Programmer Forums
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 4th, 2005, 07:22 PM
Authorized User
 
Join Date: Jul 2004
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Default DataList

Hello,

How do you get a value from a DataList. I have seen many examples getting the value of a check box in a DataList using the FindContol. This value I like to get is a label, but it just returns a null when there is data. C# code behind is:

Label lblToken = (System.Web.UI.WebControls.Label)dlCases.Items[2].FindControl("lblToken");
string strToken = lblToken.Text;

lblToken is the Label ID name in the ASPX web page.

Thanks,

Paul



 
Old November 30th, 2009, 08:34 AM
Registered User
 
Join Date: Nov 2009
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Instead of doing
Code:
	"Label lblToken = (System.Web.UI.WebControls.Label)dlCases.Items[2].FindControl("lblToken");"
Try the following:
Code:
((Label)e.Item.FindControl("lblToken"));
The above code should be written under EventHandler with argument "DataListCommandEventArgs"
 
Old December 3rd, 2009, 04:01 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

You have to use the findcontrol() method (johnkingsley06's code) in the ItemDataBound event of the datalist.





Similar Threads
Thread Thread Starter Forum Replies Last Post
Datalist inside datalist amit.jagtap ASP.NET 2.0 Professional 1 September 4th, 2007 05:03 AM
Datalist cp75 ASP.NET 1.0 and 1.1 Professional 10 September 8th, 2006 11:38 AM
DataList in DataList acko ASP.NET 1.0 and 1.1 Professional 3 July 9th, 2004 05:18 PM
about datalist bvrao VS.NET 2002/2003 0 December 24th, 2003 06:15 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.