Hi all, if I have the following class, will I run into a problem if 100 people are requesting the page at the same time? If there is only one copy of UpdateUser, will all the requests have to queue up and wait for their turns? Thank you.
public static UserManager { public static void UpdateUser(int UserID) { // this process takes up 2 seconds UserDataAccessor DA = new UserDataAccessor(); DA.Update(); } }