|
|
|
Just click Highlight All
Button, and copy (Press Control-c on Keyboard) the script
into your Script editor such as NotePad or your favorite ASP
Editor. And that's all she wrote !...... :)
|
|
| "
'Response.write strHTML
Sub ShowProgress(nPctComplete)
Response.Write "" & vbCrlf
Response.Write "statuspic.width = Math.ceil(" & nPctComplete & " * progBarWidth);" & vbCrlf
Response.Write "perctshow.innerText = '" & perc & "%';"
Response.Write "</SCR" & "IPT>"
End Sub
Sub FinishProgress
Response.Write "" & vbCrlf
'Response.Write "ProgBar.style.visibility ='hidden';" & vbCrLf
'Response.Write "perctshow.style.visibility ='hidden';" & vbCrLf
Response.Write "bar.style.visibility ='hidden';" & vbCrLf
Response.Write ""
end sub
%>
<!-- Step Four: you can uncomment "strHTML" to see results --->
|
|