This works perfectly but the "for loop" are 2000, and a calculation as the sha256 requires a bit 'of time, and I would like, on-screen, during the loop, to see where it came, in real-time.
At the same way as a "progression bar", or as when software loads some components, which are seen quickly scroll during startup.
Like a code response.write "Hello, I'm now processing the member ID " & Member_id
how to say
Hello, I'm now processing the member ID 1
Hello, I'm now processing the member ID 25
Hello, I'm now processing the member ID 40
Hello, I'm now processing the member ID 100
and so on" up to 2000
But if I insert a "response.write" inside the loop, I have as result a number list (the Member ID), at the end of script, not during.
So I thought I'd better use a Javascrit within the ASP, during the loop, but I don't know what to put in.
I'm Italian, but thanks to google translator I hope I explained.
Why would you want to display that? Your script would run so fast that the user would never see much. As for using Javascript, it's a client-side language and can't run inside a server-side script.
Bookmarks