Common. NET Function Code summary,. net code Summary

Source: Internet
Author: User

Common. NET Function Code summary,. net code Summary

1. Modify the Web. config at the specified file location on the Web

The WebConfigurationManager class must be used here, but the WebConfigurationFileMap class must be used to specify the file location. See the Code:

Long appId = 123; // modify the website configuration file var configFile = new FileInfo (configFilePath); var vdm = new VirtualDirectoryMapping (configFile. directoryName, true, configFile. name); var wcfm = new WebConfigurationFileMap (); wcfm. virtualDirectories. add ("/", vdm); var config = WebConfigurationManager. openMappedWebConfiguration (wcfm, "/", siteName); etettingssection appSection = (AppSettingsSection) config. getSection ("appSettings"); appSection. settings ["abc"]. value = "system tag"; appSection. settings ["appId"]. value = appId. toString (); config. save ();

The above code references stackoverflow, but OpenMappedWebConfiguration must specify 3rd parameters. Otherwise, an error is returned. However, siteName does not need to correspond to the site name of IIS. You can write one at will.

 

Related Article

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.