sql server demo setup refreshed in each new session

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I have an asp.net/sql server application that I would like to demo on a website. I'd like each new visitor to see a pre-populated database setup which they can then manipulate, but their changes should be lost as soon as they end the session and their changes should not be visible to any other users

Is this possible? Can anyone tell me how to do this

Thanks in advance, John.
 
You could use a dataset stored as a session variable to house your data.

--
Corey O'Mara
MCSD.NET, MCT

J McD said:
Hi,

I have an asp.net/sql server application that I would like to demo on a
website. I'd like each new visitor to see a pre-populated database setup
which they can then manipulate, but their changes should be lost as soon as
they end the session and their changes should not be visible to any other
users.
 
Back
Top