The end tag "</dbpesq:searchBox" is unbalanced

caros amigos…estou tendo um problema e não aho o erro de jeito nenhum. O código parece estar certo.

o erro que dá é o seqguinte:

The end tag “</dbpesq:searchBox” is unbalanced

o código eh o seguinte:

<%@ taglib uri="dbserver-html"       prefix="dbhtml" %> 
<%@ taglib uri="dbserver-pesquisa"   prefix="dbpesq" %>
<%@ taglib uri="dbserver-formulario" prefix="dbform" %>
<%@ taglib uri="dbserver-toolbar"    prefix="dbtbar" %>
<%@ taglib uri="struts-bean"         prefix="bean" %>

<html> 
	<head>
		<title>Emitir Informações de Bolsas para Controle Financeiro</title>
		<link rel="stylesheet" href="<dbhtml:rewrite page="/"/>../style/padrao.css" type="text/css">
		<script src="<dbhtml:rewrite page="/"/>../scripts/JavaScriptUtil.js" type="text/javascript"></script>
		<script src="<dbhtml:rewrite page="/"/>../scripts/options.js" type="text/javascript"></script>
	</head>
	<body class="corpo">
		<dbhtml:form action="/emitirInformacoesBolsasPesquisa">
			<dbform:titleNavBar title="Emitir Informações de Bolsas para Controle Financeiro"/>
			<dbform:errorBox />

			<dbpesq:searchList hasCheckbox="true" propertyId="id" searchBoxPosition="top" programa="uc050">
				<dbpesq:searchBox width="50%">
					<dbform:grid border="0" cols="3">
					
						<dbform:selectGrid label="Agência/Empresa:" comboDataObjectName="orgaoFomentoCombo" colspan="3" style="width:500">
							<dbform:optionsGrid labelProperty="orgaoFomentoDO.nmOrgaoFomento"/>
						</dbform:selectGrid>

						<dbform:selectGrid label="Programa:" comboDataObjectName="programaCombo" colspan="3" style="width:500">
							<dbform:optionsGrid labelProperty="programaDO.nome"/>
						</dbform:selectGrid>
						
						<dbform:selectGrid label="Tipo de Curso:" comboDataObjectName="tipoCursoCombo" colspan="3" style="width:500">
							<dbform:optionsGrid labelProperty="origemTipoCursoDO.nome"/>
						</dbform:selectGrid>
						
						<dbform:textGrid label="Matrícula:" property="filtro.matricula" size="50" maxlength="200" style="width:500px"/>										
					    
					    <dbform:selectGrid label="Atualizações&nbsp;Pendentes?" property="filtro.atualizacoesPendentes" style="width:100px">
					    	<option value=""></option>
						    <dbform:optionsGrid collection="atualizacoesPendentesCombo" labelProperty="label" property="value"/>
					    </dbform:selectGrid>

						<dbform:selectGrid label="Operação:" comboDataObjectName="operacaoCombo" colspan="3" style="width:500">
							<dbform:optionsGrid labelProperty="label"/>
						</dbform:selectGrid>
						
					<dbform:grid>
						<dbform:msgGrid excludeAttribute="usuarioPrograma"/>
					</dbform:grid>
				</dbpesq:searchBox>

<!-- Colunas da Lista -->	
				<dbpesq:columnSearchList property="inscritoDO.txMatricula" label="Matricula" />
				<dbpesq:columnSearchList property="inscritoDO.nome" label="Aluno" />
				<dbpesq:columnSearchList property="inscritoDO.calendarioDO.descricao" label="Ingresso" />				
				<dbpesq:columnSearchList property="nmOrgaoFomento" label="Agência/Empresa" />				
				<dbpesq:columnSearchList property="" label="Bolsa" />
				<dbpesq:columnSearchList transform="tpStatus" property="tpStatus" label="Operacao" />
				<dbpesq:columnSearchList property="" label="Período" />

			</dbpesq:searchList>
			
			<!-- Botões -->
			<dbtbar:toolbar lineSeparatorTop="true" lineSeparatorBottom="false">
				<dbtbar:newButtonToolbar align="right" actionForward="success" programa="uc050" operacao="search" />			
				<dbtbar:deleteButtonToolbar align="right" programa="uc050" operacao="delete" />
			</dbtbar:toolbar>
			<!-- Final dos Botões -->

		</dbhtml:form>
	<body>
</html>

Agradeço desde já.

Pelo que entendí vc não fechou a tag dbform:grid

&lt;dbpesq:searchBox width="50%"&gt;
  &lt;dbform:grid border="0" cols="3"&gt;
 						
      &lt;dbform:selectGrid..&gt;
        &lt;dbform:optionsGrid .../&gt;
 	  &lt;/dbform:selectGrid&gt;
      ... vários dbform:selectGrid...
      &lt;dbform:grid&gt;
          &lt;dbform:msgGrid .../&gt;
      &lt;/dbform:grid&gt;
      
  // kd o &lt;/dbform:grid&gt; que vc abriu depois de dbpesq: ?
&lt;/dbpesq:searchBox&gt;