我正在尝试将下拉列表中的值传递给现有链接,但似乎没有任何效果:
索引.cshtml:
@Html.ActionLink("Download", "MyDownload", null, new { @class = "button" })
@Html.DropDownList("schools", "-- All Schools --")
在我的 SchoolsController 中:
public FileContentResult MyDownload(string school="")
{
List1<>
List2<>
var vals =
from list1
join list2
from
select new {
};
if(school ! ="")
{
vals.where(x.list2.schools==school).tolist(); **// I get this error: "Object reference not set to an instance of an object."**
}
}
我可以用其他语言轻松完成的事情,我发现学习 C# MVC 需要很长时间。