補述WebConfig
之前ShinBan寫的過於含糊..
補述一份...
在Web.Config中...
可以發現一Section 叫做
裡面可以加入自己的需要的Key and Value
範例如下:
<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就上手..
有沒有很溫馨....
標籤:
ASP.net,
C#,
WebService
|
This entry was posted on 下午4:33
and is filed under
ASP.net
,
C#
,
WebService
.
You can follow any responses to this entry through
the RSS 2.0 feed.
You can leave a response,
or trackback from your own site.
0 意見:
張貼留言