1
Answer

Asp controls and Telerik Rad controls

Photo of Sujay Anand

Sujay Anand

5y
699
1
 How to pass string value to asp controls like textbox or label  or telerik text box?
 
 
 
foreach(GridDataItem item in RadGrid1.SelectedItems)
{
 
String strCityCode = item["CityCode" ].Text.ToString();
lbl1.Text = strCityCode;
txtrad27.Text = strCityCode;

Answers (1)