Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/12/2006, 12:25
Avatar de shumito
shumito
 
Fecha de Ingreso: mayo-2006
Mensajes: 248
Antigüedad: 18 años, 7 meses
Puntos: 0
Re: Error: Tiempo de espera caducado

using System.Data.SqlClient;

namespace dsConsultaTableAdapters
{

/// <summary>
/// Clase que implementa mas opciones para el table adapater cpa_campo_param.
/// </summary>
///
public partial class CPA_CAMPO_PARAMTableAdapter
{
public void SetCommandTimeOut(int timeOut)
{
foreach (SqlCommand command in this.CommandCollection)
command.CommandTimeout = timeOut;
}
}
}


luego, antes que llames el PA llamas al procedimiento SetCommandTimeOut(Tiempo);

dsConsultaTableAdapters.CPA_CAMPO_PARAMTableAdapte r dtGrilla = new dsConsultaTableAdapters.CPA_CAMPO_PARAMTableAdapte r();
dtGrilla.SetCommandTimeOut(TimeOut);

GrillaPar.DataSource = dtGrilla.GetListaParam();
GrillaPar.DataBind();

asi lo hice yo y me funcionó cualquier cosa me sigues contactando
suerte!