Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Is it possible to have a list of radio buttons. Say:applebeanscocunutand have it default to "apple" unless you change it? Thanks
Steve,you can not specify the default value for Radio control directly in ASPRunnerPro.However you can modify generated files to make this.Open include\..._aspfunctions.asp file from ASPRunner output folder with a text editor.Locate the following line there:
BuildEditControl = BuildRadioControl(sFieldName , sValue)
and replace it with:
BuildEditControl = BuildRadioControl(sFieldName , sDefault)
Then locate GetDefaultValue function and modify it this way:
if strField="Field" then GetDefaultValue = "apple" end if
where Field is your actual field name.