multiuser database with c#?

  • Thread starter Thread starter Ian
  • Start date Start date
I

Ian

Hi there,

I wonder if anyone can offer some help

I have the task of creating a multiuser database that will be access by 10
different IE sessions (i.e. 10 different machines).

It is basically a stock program, i have come from the background of a VB
application programming but now trying to do ASP.net with c#

I was wondering how I would tackle problems like two people updating at the
same time, is it going to cause problems?

As far as I can see there is no way for each page to update when a record
changes as technically its just an aspx page which means it sits there until
a action is done i..e button pressed etc

Any ideas or tips anyone can offer would be really appreciated

Thanks in advance

Ian
 
You'll need to trap concurrency exceptions. Type ADO.NET Concurrency
Exception into google and you'll find a bunch of stuff. That's a broad
topic so check it out a little first and if you have any specific problems
let me know.
 
Back
Top