T
tshad
Is there a to change just one radio button in a list just after DataBinding
but before send the page to the user?
For example:
RFPServiceTypes.DataSource = myDbObject.RunProcedure("GetRFPServiceTypes",
parameters)
RFPServiceTypes.DataTextField = "Description"
RFPServiceTypes.DataBind()
RFPServiceTypes.Items.Insert(0, "All Services")
That is my RadioButtonList where I add "All Services" to the top of the
list.
I want to be able to set the attributes OnSelectedIndexChanged and
AutoPostback so that if the user clicks the first radio button, all the
others get selected also.
But I only want to do it for the first button and not all of them.
Can this be done?
Thanks,
Tom
but before send the page to the user?
For example:
RFPServiceTypes.DataSource = myDbObject.RunProcedure("GetRFPServiceTypes",
parameters)
RFPServiceTypes.DataTextField = "Description"
RFPServiceTypes.DataBind()
RFPServiceTypes.Items.Insert(0, "All Services")
That is my RadioButtonList where I add "All Services" to the top of the
list.
I want to be able to set the attributes OnSelectedIndexChanged and
AutoPostback so that if the user clicks the first radio button, all the
others get selected also.
But I only want to do it for the first button and not all of them.
Can this be done?
Thanks,
Tom