Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/30.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/asp.net-mvc/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Asp.net Ckfinder azure以编程方式设置后端_Asp.net_Asp.net Mvc_Azure_Web Config_Ckfinder - Fatal编程技术网

Asp.net Ckfinder azure以编程方式设置后端

Asp.net Ckfinder azure以编程方式设置后端,asp.net,asp.net-mvc,azure,web-config,ckfinder,Asp.net,Asp.net Mvc,Azure,Web Config,Ckfinder,我想将Azure设置为CKFinder的后端,我想从AppSettings中读取值(帐户、密码),而不是后端的CKFinder设置。 类似于: <add key="CKFinderBackendAccountName" value="**********" /> <add key="CKFinderBackendAccountKey" value="************" /> connectorBuilder.LoadConfig()

我想将Azure设置为CKFinder的后端,我想从AppSettings中读取值(帐户、密码),而不是后端的CKFinder设置。 类似于:

    <add key="CKFinderBackendAccountName" value="**********" />
    <add key="CKFinderBackendAccountKey" value="************" />
connectorBuilder.LoadConfig()
                .SetLicense(licenceDomain, licenceKey)
                .SetAuthenticator(customAuthenticator)
                .SetRequestConfiguration(
                    (request, config) =>
                    {                        
                        config.LoadConfig();
                        var defaultBackend = config.GetBackend("azureBackend");}