I placed the following code into my page, but i get an error message,
why?
The code is:
if (this.RadioButtonContatto.Checked == "YES")
The error message is:
CS0117: 'System.Web.UI.WebControls.RadioButtonList' does not contain a
definition for 'Checked'
Where is the error? what else should i use for the radiobutton
selection changes?
Thanks
PawelR - 08 Oct 2007 14:26 GMT
Try use:
if (this.RadioButtonContatto.Checked)
BR.
PawelR
>I placed the following code into my page, but i get an error message,
> why?
[quoted text clipped - 10 lines]
>
> Thanks