voilà un bout de code vbscript pour les méthodes d'accès :
 
Set oConn=Server.CreateObject("ADODB.Connection" )
 oConn.Provider = "SQLOLEDB"
 oConn.Properties("Data Source" ).Value = "xxx"
 oConn.Properties("Initial Catalog" ).Value = "xxx"
 oConn.Properties("User ID" ).Value = "xxx"
 oConn.Properties("Password" ).Value = "xxx"
 oConn.open
 
 	Set oRs=Server.createObject("adodb.recordset" )
 	strSQL="select * from V_High_End_Flag_By_Product3"
 	if len(trim(strCleId))>0 then
   strSQL=strSQL & " where cle_id='" & strCleId & "'"
 	else
   if len(trim(strOtherName))>0 then
   	strSQL=strSQL & " where Delivery_name='" & replace(strOtherName,"'","''" ) & "' "
   end if
 	end if
 	strSQL=strSQL & " order by nom"
 	oRs.open strSQl, oConn,,adCmdText
 
c'est à cette dernière ligne que le timeout expire, donc c'est la requète qui est trop lourde (vue) 
 
 ---------------
			
"There's not such a thing as a stupid question, only stupid people..."