跳到主要內容

發表文章

目前顯示的是 2016的文章

asp.net web.config db connection加密通過Fortify掃描

系統管理員身分開啟 cmd 前往目錄 cd C:\Windows\Microsoft.NET\Framework\v4.0.30319 執行加密 aspnet_regiis.exe -pef connectionstring連線字串.config目錄 執行解密 aspnet_regiis.exe -pectionstrings C:\~\連線字串.config目錄 connectionstrings: 指定加密的tag 加解密必須同一台電腦,或使用金鑰

iOS Static Library 實作筆記

讓Reference的專案可發佈 TARGETS→Build Settings→All Search: custom Apple LLVM 7.1Custom Compiler Flags 設定: -fembed-bitcode  發佈(匯出) {專案名}.a 選擇 Simulator → Build → Product {專案名}.a Show in Finder→ 更名 {專案名}_simulator.a→ 拉至Desktop\{專案名}資料夾 選擇 Generic iOS Device → Build →Product {專案名}.a Show in Finder→ 更名 {專案名}_device.a→ 拉至Desktop\{專案名}資料夾 開啟終端機→ 進入Desktop\{專案名}資料夾→ 執行: lipo -create "{專案名}_device.a" "{專案名}_simulator.a" -output "{專案名}.a"

.NET WebAPI 2 Custom Response Message

Imports System.Net Imports System.Web.Http Imports System.Net.Http Imports Newtonsoft.Json Imports System.Web.Http.Filters ''' <summary> ''' 登入驗證錯誤自訂訊息 ''' </summary> ''' <remarks> </remarks> Public Class TestAuthorizeAttribute Inherits AuthorizeAttribute Protected Overrides Sub HandleUnauthorizedRequest(actionContext As Controllers.HttpActionContext) MyBase.HandleUnauthorizedRequest(actionContext) actionContext.Response.Content = New StringContent(JsonConvert.SerializeObject(New Dictionary(Of String, String) From {{"result", "-1"}}, Formatting.Indented)) Select Case actionContext.Response.StatusCode Case 401 Dim dicError As Dictionary(Of String, String) = New Dictionary(Of String, String) From { {"result", "-1"}, {"msg", "Login F