2020-01-16
當在 Default.aspx.cs 中使用下面 Code 正常。
當在 Class1.cs 中使用下面 Code 會出現【 CS0103 名稱 'Server' 不存在於目前的內容中】錯訊息。
string pfxPath = Server.MapPath("/App_Code/TestEmailCert.pfx"); |
解決方法,改成如下:
string pfxPath = HttpContext.Current.Server.MapPath("/App_Code/TestEmailCert.pfx");
|
(完)
沒有留言:
張貼留言