jQuery.AjaxRequest メソッドを使用して Script# でデータを投稿しようとしています:
jQueryAjaxOptions options = new jQueryAjaxOptions();
options.Url = "/Server/Login.ashx";
options.Data = new LoginRequest(username, password);
jQuery.AjaxRequest<LoginResponse>(options);
LoginRequest クラスが生成されないようにするにはどうすればよいですか? データをある種の名前と値のコレクションとして渡すことはできますか? または、代わりに LoginRequest を「インポート」しますか?
ありがとう。