コード例 #1
0
ファイル: HtmlForm.cs プロジェクト: gusty/WebLinq
 internal HtmlForm(HtmlObject element, string name, string action, HtmlFormMethod method, ContentType encType)
 {
     Element = element;
     Name    = name;
     Action  = action;
     Method  = method;
     EncType = encType;
 }
コード例 #2
0
 public static T SetMethod <T>(this T control, HtmlFormMethod method) where T : FormControl
 {
     control.Method = method;
     return(control);
 }
コード例 #3
0
ファイル: HtmlForm.cs プロジェクト: v0idzz/speakyclient
 public HtmlForm(string action, HtmlFormMethod method, List <InputElement> inputElements)
 {
     Action        = action;
     Method        = method;
     InputElements = inputElements;
 }