Hi
In repeater DataItemBound i have below code . I want to add " to ltrlStudents.text.
It should apply to only colum1.name + colum1.mobileno.
htmlTable.Append("" + colum1.Name + " - " + colum1.MobileNo + "");
ltrlStudents.Text = ltrlStudents.Text + colum1.Name + " - " + colum1.MobileNo;
Thanks
Mohamed Azarudeen ZPosted May 28, 2023, 11:35 AM
Hi Ramco
To add the
toltrlStudents.Textforcolum1.Nameandcolum1.MobileNoin theRepeater.ItemDataBoundevent, you can modify your code as follows: