Exemple #1
0
 public static void web_cmd_buttonw(
     Websvc w,
     string name,
     string value,
     string help,
     string extra)
 {
     Web.web_cmd_buttonw(w, name, value, help, extra, false);
 }
Exemple #2
0
        public static void web_cmd_buttonw(Websvc w, string name, string value, string help)
        {
            bool isdown = false;

            if (WebForm.form_get(w, name).Length > 0)
            {
                isdown = true;
            }
            Web.web_cmd_buttonw(w, name, value, help, "", isdown);
        }
Exemple #3
0
 public static void web_cmd_button_trtd(Websvc w, string name, string value, string help)
 {
     Web.wp(w, "<tr><td>");
     Web.web_cmd_buttonw(w, name, value, help);
 }