gpt4 book ai didi

asp.net-mvc - 设置配置文件以在 asp net mvc 4 中存储参数的最佳方法

转载 作者:行者123 更新时间:2023-12-01 11:44:23 25 4
gpt4 key购买 nike

我正在启动 Asp Net MVC4 项目,因为我来自 php 开发,所以我很好奇设置配置文件以存储系统名称、版本和其他我可能需要的参数的最佳方法是什么.

是否有任何指南可以做到这一点,例如使用配置文件或数据库查询......?

最佳答案

我将 web.config 广泛用于此类事情。

例子

<appSettings>
....
<add key="SearchUserResultMaxCount" value="100" />
</appSettings>

代码

public static class SearchHelper
{
/// <summary>
/// Gets the max records for resultset from db, configurable in web.config
/// </summary>
/// <returns></returns>
public static int SearchEntityResultMaxCount()
{
int count;
Int32.TryParse(ConfigurationManager.AppSettings["SearchEntityResultMaxCount"], out count);
return count;
}
}

关于asp.net-mvc - 设置配置文件以在 asp net mvc 4 中存储参数的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16723035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com