Introduction - If you have any usage issues, please Google them yourself
Before running the system described in the system, the user must configure the database connection string, the configuration is stored in the database connection string in the Web.config file, the string in the Web.config file to configure the database connection as shown in the following code: <add key="ConnectionString" value="Data Source=localhost POOLING=FALSE database=databasemanage User ID=sa Password=sa"/><add key="AdminTable" value="admintable"/> Users can manage other data standard, but must be added to the database managed by a database administrator' s table, as shown in the following code: CREATE TABLE [dbo] [admintable] ([ID] [int] NULL, [username] [. nvarchar] (50) COLLATE Chinese_PRC_CI_AS NULL, [password] [nvarchar] (50) COLLATE Chinese_PRC_CI_AS NULL, [firstname] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL, [lastname] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL, [permission ] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL, [dateadded] [datetime] NULL)