在我的 Get/Index 视图中,我将发布到 holidayController 中的 Post/Index 方法。所以我通过 UserID 发布,如何使用它来访问用户名?
我试过了
public ViewResult Index(int userID, string userName)
{
Person person = new Person();
//this assigns person.Id to the user Id
person.Id = userID;
//i want to assign name of person to the string userName
userName = person.name;
}
这正在闪烁,person.name 不能为空?