I have a Sub called SendMessages() that is supposed to do some database work and send an email message in my web app.
Now if I call it directly, it does what it should. I've now been trying to place this Sub into a thread of its own..
i.e
Dim sendMessageThread as New Thread(AddressOf SendMessages)
sendMessageThread.Start()
But the page ends up doing nothing...
Any ideas?




Reply With Quote