我试图在Silverlight中使用我的网络配置文件。
我在web.config中添加了以下内容:
<configuration>
<appSettings>
<add key="FileHeader" value="file://***.com/Builds/"/>
<add key="WebHeader" value="http://***.com/dev/builds"/>
</appSettings>
我试图像
一样使用它们string temp= System.Configuration!System.Configuration.ConfigurationManager.AppSettings.Get("FileHeader");
但是它不起作用,它会给出一个错误“只有赋值,调用,递增,递减......才能用作语句”
答案 0 :(得分:19)
您无法从Silverlight应用程序中读取web.config,因为Silverlight应用程序在客户端(在浏览器中)而不在服务器上运行。
从您的服务器代码中,您可以使用
访问应用设置string temp = Configuration.ConfigurationManager.AppSettings["FileHeader"];
但您必须将它们发送给客户。你可以使用InitParams
来做到这一点<param name="initParams" value="param1=value1,param2=value2" />
在您的服务器代码(Default.aspx的Page_Load)中,您可以循环遍历所有AppSettings并动态创建initParams的值。
在Silverlight应用程序中,您可以访问Application_Startup事件中的参数:
private void Application_Startup(object sender, StartupEventArgs e)
{
this.RootVisual = new Page();
if (e.InitParams.ContainsKey("param1"))
var p1 = e.InitParams["param1"];
}
或循环遍历所有参数并将它们存储在配置字典中。像这样,您可以在客户端的Silverlight应用程序中设置应用程序设置。
答案 1 :(得分:8)
您无法从Silverlight应用程序中读取web.config,因为SL .NET Framework中不存在配置命名空间,但您可以这样做:
public static string GetSomeSetting(string settingName)
{
var valueToGet = string.Empty;
var reader = XmlReader.Create("XMLFileInYourRoot.Config");
reader.MoveToContent();
while (reader.Read())
{
if (reader.NodeType == XmlNodeType.Element && reader.Name == "add")
{
if (reader.HasAttributes)
{
valueToGet = reader.GetAttribute("key");
if (!string.IsNullOrEmpty(valueToGet) && valueToGet == setting)
{
valueToGet = reader.GetAttribute("value");
return valueToGet;
}
}
}
}
return valueToGet;
}
答案 2 :(得分:1)
使用ASP.NET中的Web.config文件配置Silverlight 3应用程序
http://www.codeproject.com/Articles/49490/Configure-Silverlight-3-Applications-using-the-Web
已发布上述文章的编辑或下一版本,并且需要遵循web.config配置 - http://www.codeproject.com/Articles/56097/A-More-Flexible-and-Secure-Method-to-Configure-Sil