从客户端(?)中检测到有潜在危险的 Request.Path 值 的解决方案

时间:2023-03-09 08:27:57
从客户端(?)中检测到有潜在危险的 Request.Path 值 的解决方案
         public ActionResult A(string title)
{
return Redirect("B"+((String.IsNullOrEmpty(title))?"":"?title="+title.ToString()));
}
public ActionResult B(string title)
{
return View();
}