0
私はビューでこのようなフォームを持っているこの動的に塗りつぶされた内容を持つAsp.Net MVCのAjaxフォームに対する複数のActionResults?
public class CitySurvey { public string City {get;set;} public IEnumerable People {get;set;} public IEnumerable Buildings {get;set;} }
のような強く型付けされたモデルを想像してい
<form>
<input id = ‘City' type='text' />
<select id = 'People'> </select> //this is dynamically filled with city
<select id = 'Buildings'> </select>//this is dynamically filled with city
<input type= "submit">
</form>
私は、次のものにしたいと思っ:
- 塗りつぶしを#Peopleと#Buildingsのリストは都市名に基づいて入力します
- フォームを送信して作品を実行しますo
Public ActionResults(CitySurvey city)
のような単一ActionResultsは、これらの2つのタスクが〜を実行するJavascriptを
fは私が行うことができますか?ドロップダウンリストを埋めるために別のものを書く必要がありますか?この厳密に型定義された動的コンテンツを投稿するためにjqueryフォームプラグインを使用するにはどうすればよいですか?
ありがとうございます!
ありがとうございます!私はこれをチェックするだろう。 – Seen