Appconsole writes the current app. Config connection string to the Webcofig under the Web project under the same solution

Source: Internet
Author: User
Tags connectionstrings



First, to be able to read and write webconfig, need to quote System.Web.Configuration;

Of course read AppConfig need to have system.configuration;

Class Program {static void Main (string[] args) {string S=system.configuration.configura tionmanager.connectionstrings["BMS"].
            ConnectionString; String path = Path.Combine (Directory.getparent (System.IO.Directory.GetCurrentDirectory ()).
            Parent.Parent.FullName, "Mvcapp");
            virtualdirectorymapping VDM = new Virtualdirectorymapping (path, true);
            WebConfigurationFileMap wcfm = new WebConfigurationFileMap (); Wcfm.
            Virtualdirectories.add ("/", VDM); System.Configuration.Configuration config =
            System.Web.Configuration.WebConfigurationManager.OpenMappedWebConfiguration (wcfm, "/"); Connectionstringssection connsection = (connectionstringssection) config.

            GetSection ("connectionStrings"); if (connsection.connectionstrings["BMS"]== null) {connectionstringsettings c=new connectionst
                Ringsettings ();
                C.name = "BMS"; C.connectionstring = S;
                CONNSECTION.CONNECTIONSTRINGS.ADD (c); Config.
            Save (); } else {connsection.connectionstrings["BMS"].
                ConnectionString = s; Config.
            Save (); }//appsettingssection appsection = (appsettingssection) config.
            GetSection ("appSettings");
            if (appsection.settings["BMS"] = = NULL)//{//APPSECTION.SETTINGS.ADD ("BMS", s); Config.
            Save ();
            } console.write (s);
        Console.readkey (); }
    }



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.