I have a Form element:
$Form=new Zend_Form;
$Form->setAction($this->view->url(array('controller'=>'auth','action'=>'create'),null,true))
->setMethod('post')
->setAttrib('id','auth-form')
->removeAttrib('enctype');
As can be seen I use the removeAttrib method to remove the default enctype. But, when I echo the form I still get:
<form id="auth-form" enctype="application/x-www-form-urlencoded" action="/auth/resetpassword2" method="post">