私はasp.netmv3アプリケーションに取り組んでいます。
ヘルパークラスには、IDに基づいて人のオブジェクトを返すメソッドがあります
public Person GetPersonByID(string id)
{
// I get the person from a list with the given ID and return it
}
ビューでは、を呼び出すことができるjqueryまたはjavascript関数を作成する必要がありますGetPersonByID
function getPerson(id) {
//I need to get the person object by calling the GetPersonByID from the C#
//helper class and put the values Person.FirstName and Person.LastName in
//Textboxes on my page
}
どうやってやるの?
これは、ajax呼び出しを使用して実行できますか?
$.ajax({
type:
url:
success:
}
});
どんな助けでも大歓迎です
ありがとう