Hello,
I have a section of code that is being used to determine if a certain event should happen. The code looks like this.
If (Date.Now.Ticks Mod 100) < 4 Then
Return True
Else
Return False
End If
The idea here is that this event should happen 4 time out of 100, or 4%. However, in production, the actually percentages range from 10% to 60%. The application is being hosted on two load balanced Win2k3 servers.
Any suggestion would be helpful.
Keith