หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
Adds a custom application setting.
<configuration>
<appSettings>
<add>
Syntax
<appSettings>
<add key="Key of custom setting" value="Value of custom setting" />
</appSettings>
Attributes
| Attribute | Description |
|---|---|
key |
Required attribute. Specifies the name of the key to add. |
value |
Required attribute. Specifies the value of the key to add. |
Parent element
| Parent element | Description |
|---|---|
<appSettings> |
Contains custom application settings, such as file paths, XML Web service URLs, or any other custom configuration information for an application. |
Child elements
None
Example
The following example shows how to add a custom configuration setting for the application's name:
<appSettings>
<add key="ApplicationName" value="MyApplication" />
</appSettings>
The following example uses the <add> element to define two compatibility settings in an ASP.NET application:
<appSettings>
<add key="AppContext.SetSwitch:Switch.System.Globalization.NoAsyncCurrentCulture" value="true" />
<add key="AppContext.SetSwitch:Switch.System.Uri.DontEnableStrictRFC3986ReservedCharacterSets" value="true" />
</appSettings>
See also
ทํางานร่วมกับเราใน GitHub
แหล่งที่มาสำหรับเนื้อหานี้สามารถพบได้บน GitHub ซึ่งคุณยังสามารถสร้างและตรวจสอบปัญหาและคำขอดึงข้อมูลได้ สำหรับข้อมูลเพิ่มเติม ให้ดูคู่มือผู้สนับสนุนของเรา