2 つの異なるクエリ文字列を処理するようにコントローラーを変更する必要がありますが、同じ数の引数を使用するため、同じ名前と同じ数の引数を持つ 2 つの関数を使用できないようです。
エラー
The current request for action 'FollowUp' on controller type 'ContactController' is ambiguous between the following action methods:
どうすればこれを行うことができますか?
*文字列 #1 string,int * ?contacted=true&id=7889876
文字列 #2 string,string ?contacted=true&pid=AWRE-9876-POKJ-112WQ
現在のコントローラー
[HttpGet]
public ActionResult FollowUp(string contacted, int id) {}
ありがとう!