# File lib/cgikit.rb, line 3165
        def to_s
                to_s = "<input type=\"#@attr_type\""
                if @attr_name      then to_s << " name=\"#@attr_name\""           end
                if @attr_value     then to_s << " value=\"#@attr_value\""         end
                if @attr_size      then to_s << " size=\"#@attr_size\""           end
                if @attr_maxlength then to_s << " maxlength=\"#@attr_maxlength\"" end
                to_s << other_attributes_string
                to_s << '>'
        end