parth gupta

parth gupta

  • NA
  • 12
  • 6k

How to use Tempdata on refresh page also?

Aug 23 2016 5:06 AM
// Took result from one ActionMethod and kept it in TempData
 
// THIS IS Controller
 
int result = objDB.InsertEmployementApplication(OM);
TempData.Keep("result");
//Action Method which gets Value is Index
 
public ActionResult Index()
{
Response.Write("result is" + TempData.Keep("result") + " Thankssss");
return View("Index");
}
 
// THE ERROR IS (Error 1 Operator '+' cannot be applied to operands of type 'string' and 'void' )
 

Answers (2)