我是mvc的新手,我需要创建一个应用程序,用户将使用其中一个URL。一个URL将指向通用注册,另一个将指向自定义用户配置文件更新页面。 (在一个网站中,这将在page_load方法中。)在mvc应用程序中编写此逻辑的正确位置在哪里?
答案 0 :(得分:0)
在你的WhateverController中,你必须创建两个方法:
public ActionResult ProfilPage(int profilID)
和
[HttpPost]
public ActionResult ProfilPage(MyFormModel formModel)
{
// update user profile
}
所以你有2个网址:/ Whatever / GenericRegistration和Whatever / ProfilPage / {id}
此外,您可以创建另一个ProfilPage方法,当用户更新其数据时,该方法可以接受来自html表单的POST操作:
sudo npm install -g vs-mda-remote --user=<myuser>