SQL server 2012 包含数据库参数设定,该怎么解决

SQL server 2012 包含数据库参数设定

Update the appSettings in the Web.config file. The following keys are in the appSettings

sqlDashboardUrl - The url to the dashboard returned from provisioning a database
sqlFilePath - The path to where the database files will be store.
databaseNameFormat - The prefix to apply to the name of the database. It prefixes this to the binding id.
databaseUserFormat - The prefix to apply to users created in the database. It prefixes this to the binding id.
sqlDataSource - The datasource for the database created. This will be used as the data source in the connection string for the application.
sqlServerPort - This is the port that is used to connect to SQL Server.

在Web.config中:
这是一个SQL Server 2012中的一个包含数据库的配置,但是我不了包含数据据,给出了这么多参数要修改,完全不知道怎么写:
sqlDashboardUrl =" "?
sqlFilePath=" "?
databaseNameFormat =" "?
databaseUserFormat =" "?
sqlDataSource=" "?
sqlServerPort =" "?

请大神帮我讲解一下,谢谢
------解决思路----------------------
没见过 。关注下!
------解决思路----------------------
怎么好多不同啊,我之前学的不是这个样子啊<appSettings>
<add key="sqlCon" value="Data Source=(local);Database=Northwind;Uid=sa;Pwd=welcome"/>
</appSettings>
<connectionStrings>
<add name="ConString" connectionString="server=ZHJH;uid=sa;pwd=welcome;database=StudentInfoManage" providerName="System.Data.SqlClient"/>
</connectionStrings>
------解决思路----------------------

随便搜索了一下,看起来像是这个?
https://github.com/IronFoundry/if-service-broker/blob/master/README.md
看起来像是一个service broker得云应用?这个配置按他需求后配置好应该可以通过他得WEBAPP操作数据库?
2012用得少不太清楚拉