Nullable Tempdata in MVC

DateTime? FromDate = TempData[“FromDate”] as DateTime?; DateTime? ToDate = TempData[“ToDate”] as DateTime?; int? UserIdInv = TempData[“UserIdInv”] as int?;

Read more

Temp Data uses in MVC

Tempdata is a dictionary object which derives from TempDataDictionary,Tempdata is very uses full for below uses 1)Passing data from Action to Action in same…

Read more