创建自定义变量在web.config文件? [英] Creating custom variable in web.config file?

查看:283
本文介绍了创建自定义变量在web.config文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要创建在web.config文件中的变量,并使用该变量在网页表单。
我怎样才能做到这一点?

I want to create a variable in web.config file and to use that variable in web forms. How can I achieve this??

推荐答案

在web.config中:

in web.config:

<appSettings>
   <add key="message" value="Hello, World!" />
</appSettings> 

在CS:

string str = ConfigurationManager.AppSettings["message"].ToString();

这篇关于创建自定义变量在web.config文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆