博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取Web.config配置节
阅读量:5068 次
发布时间:2019-06-12

本文共 667 字,大约阅读时间需要 2 分钟。

static string GetAppSetting(string key)        {            var appSetting = ConfigurationManager.AppSettings[key];            if (string.IsNullOrEmpty(appSetting))            {                return string.Format("未配置节点" + key);            }            return appSetting;        }        public static string JsonServiceUrl(string key)        {            return GetAppSetting(key);        }
//var url = Configurator.JsonServiceUrl("DownFile");var apiMethodName = request.QueryString[apiMethodKey];var apiBaseUrl = Configurator.GetConfigValue("memberDomain");var apiUrl = string.Format(apiBaseUrl, apiMethodName);

 

转载于:https://www.cnblogs.com/shy1766IT/p/5324820.html

你可能感兴趣的文章
thinkphp5 csv格式导入导出(多数据处理)
查看>>
fur168.com 改成5917电影
查看>>
PHP上传RAR压缩包并解压目录
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
多服务器操作利器 - Polysh
查看>>
[LeetCode] Candy
查看>>
Jmeter学习系列----3 配置元件之计数器
查看>>
jQuery 自定义函数
查看>>
jq 杂
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
作业一
查看>>
AJAX
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
Git的使用--打tag
查看>>
F# 编程 借助 F# 构建 MVVM 应用程序
查看>>