Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Here is my code:
RadComboBox sample= this.Master.FindControl("ContentPlaceHolder").FindControl("rcb1") as RadComboBox; sample.SelectedValue = 1; It doesn't select any values on my combobox. Did i make any mistake? I really dont know what to do next.
RadComboBox sample= this.Master.FindControl("ContentPlaceHolder").FindControl("rcb1") as RadComboBox;
sample.SelectedValue = 1;
RadComboBox combo = (RadComboBox)
this
.Master.FindControl(
"RadComboBox1"
);
combo.SelectedValue =
"1"
;