控制器
IEnumerable<SelectListItem> process =
from proc in
XDocument.Load("Processes.xml").Descendants("Process")
select new SelectListItem
{
Text = (string)proc.Element("ConfigFile")
};
ViewBag.process = process;
看法
<p>@Html.DropDownList("process")</p>
我想处理在下拉列表中选择的项目上的事件我用谷歌搜索了一下,人们说没有像普通 ASP 或 WinForm 应用程序这样的常规事件处理程序
我不熟悉 javascript 和 jquery,但我可以理解代码