29 references to Form
System.Web (26)
UI\HtmlControls\HtmlInputFile.cs (1)
214HtmlForm form = Page.Form;
UI\Page.cs (14)
660(Form != null && Form.SubmitDisabledControls && (EnabledControls.Count > 0))) { 2329if (ClientSupportsFocus && Form != null && (RenderFocusScript || (Form.DefaultFocus.Length > 0) || (Form.DefaultButton.Length > 0))) { 2350else if (Form.DefaultFocus.Length > 0) { 2352focusedControlId = Form.DefaultFocus; 2355else if (Form.DefaultButton.Length > 0) { 2356focusedControlId = Form.DefaultButton; 2417return Form.SubmitDisabledControls && (EnabledControls.Count > 0) && 2523if (Form == null) { 2527if (Form.ControlState == ControlState.PreRendered) { 2546if (Form == null) { 2550if (Form.ControlState == ControlState.PreRendered) {
UI\WebControls\CheckBox.cs (1)
541if (Page.Form != null) {
UI\WebControls\FileUpload.cs (1)
237HtmlForm form = Page.Form;
UI\WebControls\ListControl.cs (1)
524if (Page.Form != null) {
UI\WebControls\login.cs (2)
1193if (Page.Form != null && String.Equals(Page.Form.Method, "get", StringComparison.OrdinalIgnoreCase)) {
UI\WebControls\loginstatus.cs (2)
308if (Page.Form != null && String.Equals(Page.Form.Method, "get", StringComparison.OrdinalIgnoreCase)) {
UI\WebControls\RadioButton.cs (1)
228if (Page.Form != null) {
UI\WebControls\TextBox.cs (1)
504if (page.Form != null) {
UI\WebParts\WebPartPersonalization.cs (2)
664if (page.Form == null || String.Equals(page.Form.Method, "post", StringComparison.OrdinalIgnoreCase)) {
System.Web.Extensions (3)
UI\PageRequestManager.cs (1)
514HtmlForm form = _owner.Page.Form;
UI\PageWrapper.cs (2)
51if (_page.Form != null) { 52return new HtmlFormWrapper(_page.Form);