我有 FormView 并绑定到记录的CommandArgument属性 ID:
CommandArguman='<%# Eval("Id") %>'
但在 ItemCommand 处理程序的服务器端,这不起作用:
int id = e.CommandArgument;
并得到错误:
指定的演员表无效。
但这项工作:
int id = int.Parse(e.CommandArgument.ToString());
e.CommandArgument的返回类型 是 Object 但为什么我不能将 Object 转换为 int?