我创建了一个网页,它在web.cofig中包含一些设置值,例如images.So,我想给Web.Config文件中的图像路径以及特定图像src中的文件名。
我只想在aspx页面中不要在codebehind中读取该设置。
例如
下面是我的代码:
Web.Config: <add key="ImagePath" value="http://192.168.0.181/Labeling/Images/"/>
在我的aspx页面中,
< img id =“ImgHeader”runat =“server”src =“<%ConfigurationManager.AppSettings [”ImagePath“]%>” />
解决方法
<img id="ImgHeader" runat="server" src="<%$ ConfigurationSettings.AppSettings["ImagePath"] %>" />
应该做的伎俩