Click here to Skip to main content
15,888,286 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i want data from a label of data list in asp.net
i created a template of data list and use a label
after binding data in label i want to access the value of label
Posted

You can try :

string id=((lable)Datalis1.findcontrol["lable1"]).Text;
 
Share this answer
 
Comments
se.nishant 9-Mar-11 6:11am    
thanks to u
C#
foreach (DataListItem dli in DataList1.Items)
            {
               Label Label1 = dli.FindControl("Label1") as Label;
               string lblValue=Label1.Text;
}

//In Datalist events.
Label Label1 = e.Item.FindControl("Label1") as Label;
//can get the value in string lblValue.
string lblValue=Label1.Text;
 
Share this answer
 
Comments
se.nishant 9-Mar-11 6:10am    
great..
thanks..
m@dhu 9-Mar-11 6:30am    
Glad helped you and you can mark it as answer if it solved your problem.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900