Ok, simple form that allows the user to set parameters for a report.whose data is then displayed in a grid
Access Type: CSCD: GetRpt(args))>
SaveExcel(args))>
The change procs are:
protected void ChangeAcc(object args)
{
AccSelect = (DropDownList)args;
ddlValAcc = AccSelect.TypeDesc;
}
protected void ChangeCSCD(object args)
{
CSCDSelect = (DropDownList)args;
ddlValCSCD = CSCDSelect.TypeDesc;
}
I have read all the other topics dealing with this that I can find and have applied what I've read, but they still don't display the selections.
What else am I missing?