Form.Method プロパティ

定義

フォームの送信に使用するメソッドを取得または設定します。 既定値は post です。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「ASP.NET を使用した Mobile Apps & サイト」を参照してください。

public:
 property System::Web::UI::MobileControls::FormMethod Method { System::Web::UI::MobileControls::FormMethod get(); void set(System::Web::UI::MobileControls::FormMethod value); };
[System.ComponentModel.Bindable(true)]
public System.Web.UI.MobileControls.FormMethod Method { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Method : System.Web.UI.MobileControls.FormMethod with get, set
Public Property Method As FormMethod

プロパティ値

フォームの送信に使用するメソッド。

属性

注釈

get要求は、投稿できるデータの量に制限されています。 要求を使用すると、一部の種類のポストバックが失敗することがあります get 。 要求の利点は、 get すべてのパラメーターが URL の一部として指定され、URL をキャッシュまたは保存できることです。 要求の post 要素は、 内に HttpRequest.Form含まれています。

適用対象

こちらもご覧ください