如何将Kentico网站与数据库连接

时间:2014-06-20 07:30:37

标签: asp.net kentico

我刚刚开始使用Kentico,在Kentico安装之后,我的sql server数据库没有安装文件,但是我得到的文件是本地存储在数据库中的(在localdb上)。所以现在我想知道如何连接现有数据库(sql server)。当我尝试更改Web配置时,但是当我们从Kentico Service Manager运行服务时会出现问题。

另外我还有另一个问题,如果管理员通过界面对文本进行了某些更改,那么如何才能实现这一点,并且这些更改也应该反映在数据库中。所以当下次有人试图访问时它将反映给他的网站。请让我知道。提前致谢。

1 个答案:

答案 0 :(得分:0)

请参考:  Connecting your project to the database

Daabase Setup

Managed projects are connected to the database and contain Kentico EMS data by default.
If you're using an unmanaged project, you must connect the project to the database manually. You have two options to connect your project to the database:
entering the database credentials into the database setup wizard
adding a connection string to your application's web.config
Connection string template

    <add name="CMSConnectionString" connectionString="Persist Security 
Info=False;database=DATABASE_NAME;server=SERVER_NAME;user 
id=USER_NAME;password=PASSWORD;Current Language=English;Connection Timeout=240;"/>