public ActionResult ChoiceView(string name)
{
if (TempData["SessionVariable"] != null)
{
FileName = name;
return View();
}
else
{
return RedirectToAction("index", "Home");
}
}
在代码中,我已经在先前的控制器中初始化了Tempdata。
在编写TestCase时如何初始化和使用TempData?