補述WebConfig

2008/07/23

之前ShinBan寫的過於含糊..

補述一份...

在Web.Config中...

可以發現一Section 叫做

裡面可以加入自己的需要的Key and Value

範例如下:


<appSettings>
<add key="FittingImageFilePath" value="TempImg\" />
<add key="SourceImage" value="TempImg\" />
</appSettings>

其中我用了兩組需要的東西分別為 FittingImageFilePath,SourceImage
他們的值分別為 TempImg1\,TempImg2\

則在C#中如何呼叫呢?!


1.你必須先加入參考System.Configuration
2.你必須在你需要用到的地方先 using System.Configuration;
3.取用方式

下面範例是取用FittingImageFilePath得值

string FixClothPath = ConfigurationManager.AppSettings["FittingImageFilePath"];

這樣你把 FixClothPath 印出來就會是 TempImg1\


就這樣第一次使用 Configuration就上手..


有沒有很溫馨....


0 意見:

程式 . 生活 . D小調.@2010 | Binary Design: One Winged Angel.