Thermometer / Gauge display.

A

Alex Stevens

Hi All,

On my site we are about to run a fundraising scheme.
I would like to display on there a thermometer to show how far we have got
to reach our total........

Does anybody know of a free example of this, or have they done this
themselves??

Thanks

Alex Stevens
 
E

Evertjan.

Alex Stevens wrote on 22 sep 2003 in
microsoft.public.inetserver.asp.general:
On my site we are about to run a fundraising scheme.
I would like to display on there a thermometer to show how far we have
got to reach our total........

Does anybody know of a free example of this, or have they done this
themselves??

Build it from scratch:

========= test.asp ==============

<%
' for 20%
pct=20

a=500*pct/100
b=500-a

%>
<div style=width:50px;float:left;>
<%=pct%> %
<div style="width:15px;height:500px;background.color:green;
padding-left:4px;padding-top:<%=b%>px;">
<div style="width:7px;height:<%=a%>px;background.color:red;">
</div></div></div>

<%
' for 63%
pct=63

a=500*pct/100
b=500-a

%>
<div style=width:50px;float:left;>
<%=pct%> %
<div style="width:15px;height:500px;background.color:green;
padding-left:4px;padding-top:<%=b%>px;">
<div style="width:7px;height:<%=a%>px;background.color:red;">
</div></div></div>

<%
' for 90%
pct=90

a=500*pct/100
b=500-a

%>
<div style=width:50px;float:left;>
<%=pct%> %
<div style="width:15px;height:500px;background.color:green;
padding-left:4px;padding-top:<%=b%>px;">
<div style="width:7px;height:<%=a%>px;background.color:red;">
</div></div></div>

<%
' for 47%
pct=47

a=500*pct/100
b=500-a

%>
<div style=width:50px;float:left;>
<%=pct%> %
<div style="width:15px;height:500px;background.color:green;
padding-left:4px;padding-top:<%=b%>px;">
<div style="width:7px;height:<%=a%>px;background.color:red;">
</div></div></div>

=================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top