转自:
http://www.cnblogs.com/zhucl1006/archive/2008/04/02/1134150.html
<asp:TextBox ID="ttel2" runat="server" Width="95%" Text='<%$AppSettings:DefualtV_Tel%>' onFocus=OnEnter(this) onBlur=OnExit(this)></asp:TextBox>
假如是html控件,必须runat=server
此方法适用于vs2005/vs2008, 2003没试过
这种方法还可以用在资源读取,例如
<siteMapNode url="~/pages/contents/blogbooksolutions" title="$Resources:siteMap,Link42,Blogbook/BlogPrint" description="" />
转自: http://www.cnblogs.com/zhucl1006/archive/2008/04/02/1134150.html onFocus=OnEnter(this) onBlur=OnExit(this)> 假如是html控件,必须runat=server 此方法适用于vs2005/vs2008, 2003没试过 这种方法还可以用在资源读取,例
1.在客户端页面(非单独的js文件),可以
直接
获取
web
config
的配置信息function Name() {
var Name=System.
Web
.
Config
uration.
Web
Config
urationManager.AppSettings["Name"];
}2.在单独的js文件
中
,那该如何调用
Web
config
?2.1在前段页面
中
,可以
直接
自定个标签 <input class="e
<
web
.
config
>
web
.
config
文件是一个XML文件,它的根结点是<
config
uration>,在<
config
uration>节点下的常见子节点有:
<
config
Sections>、<appSettings>、<connectionStrings>和<system.
web
>。
其
中
<...
在 C#
中
,可以使用 System.
Config
uration.
Config
urationManager 类来
读取
app.
config
或者
web
.
config
文件
中
的配置信息。这个类是 .NET Framework
中
的一部分,可以帮助我们
读取
和写入配置文件
中
的键
值
对。
以下是
读取
app.
config
文件
中
的配置信息的步骤:
1. 在代码
中
添加对 System.
Config
uration 命名空间的引用,例如:using System.
Config
uration;
2. 使用
Config
urationManager 类的静态属性 AppSettings 来
读取
app.
config
文件
中
的键
值
对,例如:
string value =
Config
urationManager.AppSettings["key"];
其
中
,"key" 是需要
读取
的键名,value 是对应的
值
。
3. 如果需要
读取
连接字符串,可以使用
Config
urationManager 类的静态属性 ConnectionStrings,例如:
string connectionString =
Config
urationManager.ConnectionStrings["connectionStringName"].ConnectionString;
其
中
,"connectionStringName" 是连接字符串的名称,connectionString 是对应的连接字符串。
需要注意的是,
读取
app.
config
文件
中
的配置信息时,需要将配置信息写在 appSettings 或 connectionStrings 节点下,否则将无法
读取
。另外,如果使用的是
web
.
config
文件,则需要将上述代码
中
的
Config
urationManager 替换为 System.
Web
.
Config
uration.
Web
Config
urationManager。
huangya0: