SUJAY ANAND

SUJAY ANAND

  • 817
  • 896
  • 28k

Asp controls and Telerik Rad controls

Nov 28 2019 3:57 AM
 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)