g
Printer Friendly Version

editor  
BellaOnline's ASP Editor
 

cInt Math / Numeric Function

If a user passes in a text string that contains numbers, you can use cInt to change those values from a text type to a numeric type.

So let's say you have

ItemBought = "14 cats"

You could parse out the left side of that text string so that you end up with

ItemCt = "14"

but you can't actually do math calculations with that, because it is a string of characters, not an actual number. So to turn that into a number value, you would use:

ItemNum = cInt(ItemCt)

ASP Math and Number Functions

Introduction to ASP Ebook

Download this ebook to get everything you need to know about learning ASP - from a step by step tutorial to function lists, sample code, common errors and solutions, and much more! 101 pages.

ASP Site @ BellaOnline
View This Article in Regular Layout

Content copyright © 2013 by Lisa Shea. All rights reserved.
This content was written by Lisa Shea. If you wish to use this content in any manner, you need written permission. Contact Lisa Shea for details.



| About BellaOnline | Privacy Policy | Advertising | Become an Editor |
Website copyright © 2023 Minerva WebWorks LLC. All rights reserved.


BellaOnline Editor