Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Short Debbuging

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I want to imply a division between a value of a recordset and a float I wrote the following and a message ')' expected will occur.Can someone please correct the following:<%=Rseta(&quot;CaseCash&quot;) DIV 340,75 %>
 
You need to perform the calculation in a block and store the result in a variable first. Then place the result in your page using the 'inline' ASP tag:


<%
result = Rseta(&quot;CaseCach&quot;) DIV 340,75
%>
<%=result%>


Hope this helps
-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top