วิธีกำหนดตัวแปรในไฟล์ web.config ของ ASP.NET

June 17th, 2010

admin | 1,024 views
กำหนดตัวแปรในไฟล์ web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
.
.
.
<appSettings>
<add key="cfgWebTitle" value="Memo8.com" />
</appSettings>
</configuration>
วิธีอ่านค่า (C#)
string cfgWebTitle=ConfigurationManager.AppSettings["cfgWebTitle"].ToString();
Response.Write(cfgWebTitle);
You can
leave a response, or
trackback from your own site.
Responses are currently closed, but you can
trackback from your own site.
You can skip to the end and leave a response. Pinging is currently not allowed.
Both comments and pings are currently closed.