Main Topics
Browse All TopicsCan you point me to some resources and/or give some ideas on how to create an aspx page that will test the max bandwidth for up and down stream between the clients and the server?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
<!-- ONE STEP TO INSTALL BANDWIDTH CALCULATOR:
1. Copy the coding into the BODY of your HTML document -->
<!-- STEP ONE: Paste this code into the BODY of your HTML document -->
<BODY>
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet
<!-- Original: JavaScript Kit -->
<!-- Web Site: http://wsabstract.com -->
<form name="bandwidth">
<p><input type="text" name="original" size="20" value=1024> <select size="1" name="units">
<option value="Bytes">Bytes</optio
<option value="Kb">Kb</option>
<option value="Mb">Mb</option>
<option value="Gb">Gb</option>
</select> <input type="button" value="Calculate" name="B1" onClick="calculate()"></p>
</form>
<p>
<script>
/*
Bandwidth calculator (credit must stay enclosed)
By javascriptkit.com
For this and over 400+ JavaScripts,
Visit http://www.javascriptkit.c
*/
var bytevalue=0
function calculate(){
var invalue=document.bandwidth
var selectunit=document.bandwi
if (selectunit=="Bytes")
bytevalue=invalue
else if (selectunit=="Kb")
bytevalue=invalue*1024
else if (selectunit=="Mb")
bytevalue=invalue*1024*102
else if (selectunit=="Gb")
bytevalue=invalue*1024*102
alert (invalue+" "+selectunit+" is equal to:\n\n- "+bytevalue+" Bytes\n- "+Math.round(bytevalue/102
}
</script>
<p>
<p><center>
<font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
by <a href="http://javascriptsou
</center><p>
<!-- Script Size: 1.73 KB -->
http://javascript.internet
Business Accounts
Answer for Membership
by: nauman_ahmedPosted on 2004-10-28 at 08:50:32ID: 12435312
Check it out:
opic.asp?t id=76167
http://vbcity.com/forums/t
Best, Nauman.