我向webconfig里面写入值,为何在写入的方法里面陷入死循环,调用方法后的代码不能执行!!!
SetAppSetting(key, value);
Response.Redirect("index.aspx");
————————————————————————————————
public void SetAppSetting(string key, string value)
{
AppSettingsSection appSetting = (AppSettingsSection)config.GetSection("appSettings");
if (appSetting.Settings[key] == null)//如果不存在此节点,则添加
{
appSetting.Settings.Add(key, value);
}
else//如果存在此节点,则修改
{
appSetting.Settings[key].Value = value;
}
config.Save();
}
——————————————————
后面的index.aspxt调转不过去