میلاد قاضی پور
سه شنبه 04 خرداد 1389, 21:22 عصر
سلام . من میخوام مقداری رو به عنوان کانکشن استرینگ توی فایل کانفیگ ذخیره کنم . این کد منه که از سایتهای مرتبط یادگرفتم . چرا کار نمیکنه ؟
کانکشن استرینگ تغییر داده نمیشه
string connectionStr = ConfigurationManager.ConnectionStrings["constr"].ToString();
MessageBox.Show(connectionStr);
Configuration conf = ConfigurationManager.OpenExeConfiguration(Configur ationUserLevel.None);
conf.ConnectionStrings.ConnectionStrings["constr"].ConnectionString = "data source=d:\a.mdf";
conf.Save(ConfigurationSaveMode.Full);
ConfigurationManager.RefreshSection("constr");
connectionStr = ConfigurationManager.ConnectionStrings["constr"].ConnectionString.ToString();
MessageBox.Show(connectionStr);
کانکشن استرینگ تغییر داده نمیشه
string connectionStr = ConfigurationManager.ConnectionStrings["constr"].ToString();
MessageBox.Show(connectionStr);
Configuration conf = ConfigurationManager.OpenExeConfiguration(Configur ationUserLevel.None);
conf.ConnectionStrings.ConnectionStrings["constr"].ConnectionString = "data source=d:\a.mdf";
conf.Save(ConfigurationSaveMode.Full);
ConfigurationManager.RefreshSection("constr");
connectionStr = ConfigurationManager.ConnectionStrings["constr"].ConnectionString.ToString();
MessageBox.Show(connectionStr);