ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









FormMethodserializable

System.Web.UI.MobileControls (system.web.mobile.dll)enum

This enumeration is used in conjunction with the
Form.Method property to specify how data will be
submitted with a form. If supported, you will almost always use
Post, which submits information in the body of a
request. A Get request, on the other hand, submits
data as query string arguments in the URL. This approach may not work
with all types of data, and may be subject to length requirements.

public enum 

FormMethod {

Get = 0 ,

Post = 1
}



Hierarchy


System.Object
System.ValueType
System.Enum(System.IComparable,
System.IFormattable
,
System.IConvertible)
FormMethod

Returned By


Form.Method

Passed To


Form.Method


/ 873