I tried to do a bootstrap alignment, so that I had the label and beside it the control. Well, thinking that way, I chose the class. Well, when I render the site, the alignment gets the label on top and the control down. By the code is not sure the result. I made numerous attempts and did not get anything. I'm reading about the bootstrap, but I still have not got the expected result.
<div id="agendamento">
<form class="form-horizontal" role="form">
<div class="control-group">
<label for="txtCnpjOs" class="control-label">CNPJ:</label>
<div class="controls col-sm-03">
<input type="text" class="span2" id="txtCnpjOs" placeholder="Digite o Cnpj">
</div>
</div>
<div class="control-group">
<label for="txtOS" class="control-label">OS:</label>
<div class="controls">
<input type="text" class="input-small col-sm-03" id="txtOS" placeholder="Digite o numero da OS">
</div><br />
<input id="btnPesquisar" type="button" class="btn btn-success" value="Pesquisar" onclick=" return MontaAgendamento();" />
</div>
</form>
<br />
<div id="filtro">
<div id="FiltroPesquisa">
<form class="form-horizontal" role="form">
<div class="control-group">
<label for="txtAcao" id="lblProxAcao" class="control-label">Ação</label>
<div class="controls">
<input id="txtAcao" type="text" readonly="true" value="" />
<input id="txtProxAcao" type="text" readonly="true" value="" />
</div>
</div>
<div class="control-group">
<label for="txtDataCadastro" class="control-label">Data Cadastro</label>
<div class="controls">
<input id="txtDataCadastro" type="text" readonly="true" value="" />
</div>
<label for="txtIDV99" class="control-label">ID V99:</label>
<div class="controls">
<input id="txtIDV99" type="text" readonly="true" value=""/>
</div>
</div>
</form>
</div>
</div>
</div> @*Fecho a div agendamento*@