Scott Bryen wrote:
Ok so i've never really done ASP.NET before so i thought it would be a good start to make a ticketing system. Now I'm going to need a database to store the tickets etc and user security. My problem is that creating users and roles with the ASP.NET configuration tool puts them in a seperate database to the database that will be used store the tickets.
However, the tickets need a relationship to the user that submited it. Can someone suggest the best way to do this? E.g build the users and roles into the database that stores the tickets or is it possible to create a relationship between 2 tables in different databases? Or any other way, i did notice the provider tab in the configuration tool but it didnt really have many options.
Thanks.
AS Sven Noted, you can specifiy the DB.
Or, if this is an internal corporate application, integrate with AD for your roles and users using Authorization Manager, instead of relying on users and roles stored in a DB.