添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

转自: 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: 此方法在reporting services 2008中会出现权限问题 Request for the permission of type 'System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. 解决办法看 http://kb.cnblogs.com/a/1385228/ ljl_xyf: 你的修改要10秒钟才会生效。 &lt;add name=&quot;MSPetShop4&quot; connectionStringName=&quot;SQLConnectionString&quot; pollTime=&quot;10000&quot;/&gt; 所以才会出现你说的情况 (转)安装Ms SQL Server 2005 开发版时出现性能计数器要求安装错误的解决办法 fei569226067: 虽然我按照你的方法在关闭System Overview窗口时有问题,但是我按照004的值修改果然行的,谢谢