Beispiel #1
0
 public Form(string action, FORM_METHOD method, IDictionary attributes)
     : base("form", attributes)
 {
     NullSet(METHOD, method.ToString().ToLower());
     NullSet(ACTION, action);
 }
Beispiel #2
0
 public Form(string action, FORM_METHOD method)
     : base("form")
 {
     NullSet(ACTION, action);
     NullSet(METHOD, method.ToString().ToLower());
 }