swindmiller 1 Posted March 3, 2015 Report Share Posted March 3, 2015 (edited) I have a RS object: rs.Fields.item("FreeHardDiskSpace") that outputs like this: 476938.03125 I want to convert it to Gigabytes, so to start I want to remove everything after the period, the rest I think I can handle. I am still very new to all of this and see different ways to do it but am having trouble referencing and displaying it. Right now I use this to display it: <td>Free Space: <%Response.Write(rs.fields.item("FreeHardDiskSpace").Value)%></td> Sorry but I need a little hand holding Can someone tell me how to strip everything after the period and then how to display it? I was able to accomplish what I wanted with TotalMemory which was showing "8192" by using this: <%TotalMemory = rs.fields.item("TotalMemory")/1024%><td>Total Memory: <%Response.Write(TotalMemory)%></td> Thanks, Scott Edited March 3, 2015 by swindmiller 1 Quote Link to post Share on other sites
justsomeguy 1,135 Posted March 3, 2015 Report Share Posted March 3, 2015 If you're using VBScript, you could round the number:http://www.w3schools.com/vbscript/func_round.aspor just drop the decimal part:http://www.w3schools.com/vbscript/func_int.aspor format it another way:http://www.w3schools.com/vbscript/func_formatnumber.asp 1 Quote Link to post Share on other sites
swindmiller 1 Posted March 3, 2015 Author Report Share Posted March 3, 2015 Perfect, I knew it was something simple Thanks Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.