Hi @shijo stephen ,
First you need to make sure there is a value,
then you need to change var s = @TempData.Peek("DocumentStatus"); to string s = TempData.Peek("DocumentStatus").ToString();
I did a simple test, you can refer to it.
public ActionResult Index()
{
TempData["DocumentStatus"] = "Application";
return View();
}
@{
string s = TempData.Peek("DocumentStatus").ToString();
}
@if (s == "Application")
{
string a = "";
}
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.