1
Answer

Asp controls and Telerik Rad controls

SUJAY ANAND

SUJAY ANAND

5y
661
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)