コード例 #1
0
ファイル: TempDataHelper.cs プロジェクト: thep497/TormorWeb
 public static string ShowError(this TempDataDictionary tempData)
 {
     return(tempData.ShowTempData("errormessage"));
 }
コード例 #2
0
ファイル: TempDataHelper.cs プロジェクト: thep497/TormorWeb
 public static string ShowWarning(this TempDataDictionary tempData)
 {
     return(tempData.ShowTempData("warningmessage"));
 }
コード例 #3
0
ファイル: TempDataHelper.cs プロジェクト: thep497/TormorWeb
 public static string ShowInfo(this TempDataDictionary tempData)
 {
     return(tempData.ShowTempData("message"));
 }