Nothing.... I've never seen anything saved on the clipboard for very long. I wouldn't post it anyways as the last time I copied something to the clipboard was last night's league server password (I think).
<%
Function rndChrString(x)
Randomize
For iChr = 0 to x
iRnd = int(rnd(1)*26)
iRnd = iRnd + 65
nRnd = int(rnd(1)*3)
If nRnd = 1 Then
addChr = lcase(Chr(iRnd))
ElseIf nRnd=2 Then
addChr = CStr(int(rnd(1)*10))
Else
addChr = Chr(iRnd)
End If
strConf = strConf & addChr
strUpShoot= strUpShoot + Chr(iChr+65)
Next
rndChrString = strConf
End Function
%>