|
-
May 23rd, 2000, 09:58 PM
#1
Thread Starter
Member
I am trying to change the reciving the following values into a asp page, which I have created using vbscript.
The values are as follows:
50545555
and
-00133333.
I want to change these values before processing them , to decimal values e.g
50545555 to be 50.545555
and -00133333 to be -001.33333.
What is the variable in vbscript will allow me to do this as I am not from a visual basic background.
Please help me on this.
thanks and regards
asap
-
May 24th, 2000, 03:25 PM
#2
Frenzied Member
is this any help?
Code:
<%@ Language=VBScript %>
<html>
<head>
</head><body>
<%
Response.Write(50545555 / 1000000)
Response.Write "<BR>"
Response.Write(-00133333 / 100000)
%>
</body>
</html>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|