hi, I have a bit of code that does a couple of bidding inserts into a database, the sub is pretty simple, standard inserts:
InsertTheBid(thechb, Request("id"), currentmaxbid, currentmaxbid) ' i want to force a delay here, then do this InsertTheBid(Server.HtmlEncode(Request.Cookies("userid").Value), Request("id"), whattheusertypedin, whattheusertypedin)
my problem is that when it does these 2 inserts through the sub, they timestamp them the same in sql, but i want to force a short delay of milliseconds so they can be ordered correctly in the table.
hope that makes sense, thanks in advanced
|