我有一个视图,其中有两种形式,用于声明每页的行。在后期操作中,我需要我的 Url 相同,只需添加新参数。现在我这样使用:
[HttpPost]
public ActionResult Index(FormCollection collection) {
//Calculate Row Count
return RedirectToAction("Index", new { RC = RowCount });
}
有了这个实现,我的所有参数都丢失了,只是RC = rowcountnumber
被替换了。如何保留参数并添加新参数RC
?最快的方法是什么?这里有任何性能问题吗?