| Author |
|
| Company |
Share Right Corporation |
| Source Code Available |
No |
| License Type |
Free |
| Submitted On |
December 30, 2008 |
| Updated on |
January 06, 2009 |
| .NET Framework |
1.x, 2.0 |
| Cost |
$ 0 |
Description
This is a free RadioButton control that works properly inside the ASP.NET DataGrid.
- Bindable GroupName property
- Bindable Value property
- Bindable Text property
Don't forget that you can have multiple groups on the same page!
Syntax Example
private void RadioButton1_CheckChanged(object sender, System.EventArgs e) {
ConwayControls.Web.RadioButton rb = sender as ConwayControls.Web.RadioButton;
if(rb != null && rb.Checked){
ThisObject.SomeProperty = rb.Value;
}
}Screenshots
Reviews
Submit a review
Time Saving
Reviewed by: JonathanP on Thursday, January 10, 2008
5 Stars
Thanks for the control, saved me quite some time.
I want to add that this control is not only usefull for use in datagrid controls but also in web user controls or repeaters.