I am having trouble getting some fields to be read only on an add page. The code I am using is below. The fields I am trying to make read only are:

AER1DB.dbEditAddROFlds= "0,updated,SC Reviewed,SC Reviewed Date,SC Comments"

0, updated and SC Reviewed come up read only on the page but SC Reviewed Date And SC Comments come up still editable. I have even tried using their field number with no luck. Any help would be appreciated.

Carl

<%
Set AER1DB = Server.CreateObject(&#34;ASPdb.EP&#34
AER1DB.dbUnit = 101
AER1DB.dbDSN = &#34;DSN=Dragon; UID=sa; PWD=&#34;
AER1DB.dbSQL = &#34;SELECT * FROM statuschange WHERE ClientID=&#39;&#34; & Session(&#34;myClientID&#34& &#34;&#39; ORDER BY Updated DESC&#34;
AER1DB.dbMode = &#34;Both&#34;
AER1DB.dbStartUp=&#34;EditAdd&#34;
AER1DB.dbNavigation = &#34;Both&#34;
AER1DB.dbNavigationIcon = &#34;std&#34;
AER1DB.dbImageDir = &#34;images/&#34;
AER1DB.dbNavigationItem = &#34;Add,Next,Prev,Filter,gridrow,Reload&#34;
AER1DB.dbColor = &#34;2,Auto,009999,,,False&#34;
AER1DB.dbEditParams = _
&#34;TableName=statuschange,BookMarkFlds=0&#34;
AER1DB.dbEditFlds = &#34;(;,[]) ClientID[&#34; & Session(&#34;myClientID&#34 & &#34;],Updated[timestamp(mm/dd/yy hh:mm:ss)], First Name, Last Name, SSN, Department, Job Title, Type Change, Effective Date, Reason, Reason Other, Layoff, Layoff Other, Leave, Leave Start, Leave End, Resignation, Resignation Other, Involuntary Term,Payroll Effective, Payroll Rate From, Payroll Rate To, Payroll Comments, Status From, Status To, Status Comments, Work Position From, Work Position To,BWC Code From, BWC Code To, Department From, Department To, Department Comments, Family Status From, Family Status To, New Street, New City, New State, New Zip Code, New Telephone, New School District, New Email,SC Reviewed[No],SC Reviewed Date,SC Comments&#34;
AER1DB.dbEditAddROFlds= &#34;0,updated,SC Reviewed,SC Reviewed Date,SC Comments&#34;
AER1DB.dbEditDropFlds=&#34;Type Change,,,/Payroll/Benefits/Personal;Reason,,,/New Hire/Rehire/Promotion/Demotion/Transfer/Merit Increase/Length of Service/Evaluation/Other;Layoff,,,/End of Project/Lack of Work/Other;Leave,,,/Medical/Family/Personal;Resignation,,,/Personal/New Job/Moved/School/Pregnancy/No Show/Other;Status To,,,/Full Time/Part Time/Hourly/Salary/Seasonal/On Call/Expempt/NonExempt;Status From,,,/Full Time/Part Time/Hourly/Salary/Seasonal/On Call/Expempt/NonExempt&#34;
AER1DB.dbGridDisplayFlds= &#34;ClientID,Updated,First Name,Last Name,SSN,Type Change,SC Reviewed,SC Reviewed Date&#34;
AER1DB.dbGridInc = -1
AER1DB.dbGridIncMax = 10
AER1DB.dbFilterFlds= &#34;First Name,Last Name,SSN,Type Change&#34;
AER1DB.dbButtonsOnOFF= &#34;EditDropOFF&#34;
AER1DB.dbButtonAnchor=false
AER1DB.dbFilterParams= &#34;ApplyButtonText=Search,TextBeforeTable=<P align=center><B>User your back button to cancel!</B>&#34;
AER1DB.ASPdbEP
%>