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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IntToStr using Delphi 8

Status
Not open for further replies.

minckle

Programmer
Mar 17, 2004
142
GB
hi
Im learning to use delphi 8 creating ASP projects.

I come from a Delphi 5 background where you can use IntToStr to convert Integers to Strings.

Is there a same type of function available when your dealing with ASP Projects which a standard function
 
Both JavaScript and VBScript that are used in ASP code are not strongly typed. This means that you can treat an integer type like a string without having to do a specific conversion. For example, when I'm debugging an ASP page and I want to determine where an error is, I'll frequently put alerts in a number of places in the code so that I can track how far it gets before the error occurs. These statement look like this:

alert(1);
...
alert(2);
etc.

You'll notice that I don't convert the numbers to strings, it's automatically done for me.

-Dell
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top