1         public ActionResult A(string title)
2         {
3             return Redirect("B"+((String.IsNullOrEmpty(title))?"":"?title="+title.ToString()));
4         }
5         public ActionResult B(string title)
6         {
7             return View();
8         }

相关文章:

  • 2022-12-23
  • 2021-05-13
  • 2022-12-23
  • 2021-09-22
  • 2021-10-02
猜你喜欢
  • 2022-12-23
  • 2021-06-06
  • 2021-10-09
  • 2022-12-23
  • 2022-12-23
  • 2021-08-08
相关资源
相似解决方案