我正在处理 asp.net MVC3 上的一个项目,当我运行我的项目并登录时,我有一个名为 UserProfile 的控制器,它显示错误 A public action method images was not found on controller UserProfile
我的任何控制器中都没有任何名为 images 的操作方法,下面是我的 UserProfile 的索引方法
[CustomAuthorizeAttribute]
public ActionResult Index()
{
var userName = string.Empty;
if (SessionHelper.GetSession("login") != null)
{ userName = SessionHelper.GetSession("login").ToString(); }
else
{ return View(); }
SessionHelper.SetSess("issetup", null);
UserProfileModel model = GetUserProfileData(userName);
StateandCityDropdown();
return View(model);
}
我在用户配置文件索引视图上有两个表单,一个带有一些文本框和其他用于输入数据的字段,第二个用于上传图像