# File lib/cgikit.rb, line 1645
 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
		to_s << '>'
	end