I'm trying to create a static class where I simply call a function that accepts query string and return a data table. inside the static function includes opening and closing of the static connection..
now my question is, since ASP.NET services or functions are process not in the client but in the server side, would it mean that for all users who will try to access and call the static function will share the same static connection? would it mean some issues since, people will try to open and close the connection simultaneously without knowing it is being used or not by other users?
now my question is, since ASP.NET services or functions are process not in the client but in the server side, would it mean that for all users who will try to access and call the static function will share the same static connection? would it mean some issues since, people will try to open and close the connection simultaneously without knowing it is being used or not by other users?