public ActionResult Index()
{
Queries q1 = new Queries();
return View(q1);
}
public ActionResult Index(string id)
{
Queries q1 = new Queries(id);
return View(q1);
}
public ActionResult Select(string id)
{
return RedirectToAction("Index",id);
}
なにが問題ですか...
コントローラータイプ「CompanyController」のアクション「Index」に対する現在のリクエストは、次のアクションメソッド間であいまいです。タイプLookUpForm.Controllers.CompanyController System.Web.Mvc.ActionResultIndexのSystem.Web.Mvc.ActionResultIndex() (System.String)タイプLookUpForm.Controllers.CompanyController
アクションインデックスの1つにはパラメータがなく、もう1つには文字列パラメータがあるので、有効である必要があると思います。