I have this function called from an asp page drop-down box.
The issue is, that pivotflag and syncflag could be either yes or no. I am getting an illegal character error and it looks like this
I would like to evaluate the pivotflag and syncflag and then do something with the drop-downs. So, what's wrong with the syntax?
Thanks,
Todd
Code:
onChange="ValidateSel(this, ‘<%=pivotflag%>’, ‘<%=syncflag%>’);
The issue is, that pivotflag and syncflag could be either yes or no. I am getting an illegal character error and it looks like this
Code:
ValidateSel(this, ‘Y’, ‘N’);
I would like to evaluate the pivotflag and syncflag and then do something with the drop-downs. So, what's wrong with the syntax?
Thanks,
Todd