The following code divide the UnitPrice column by 27 - watch out for the delimiter conflict

<%
Set X= Server.CreateObject(&#34;ASP.DB&#34
X.dbUnit = &#34;999&#34;
X.dbMode = &#34;Grid&#34;
X.dbValidatorParams = &#34;/ASPDB/Jars/&#34;
X.dbDSN = &#34;DSN=NWIND&#34;
X.dbMagicCell = &#34;(;,[]!|~/+{})UnitPrice,,<<!UnitPrice! / 27 ::##0.##>>&#34;
X.dbSQL = &#34;SELECT ProductID,ProductName,UnitPrice FROM Products&#34;
X.ASPdb

%>