Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/06/2015, 14:26
ggol15
 
Fecha de Ingreso: junio-2015
Mensajes: 78
Antigüedad: 8 años, 10 meses
Puntos: 0
Respuesta: Error:no muestra resultados

ya lo resolví gracias todos modos por la ayuda , pero se requiere q este foro tenga gente disponible para ayudar por q ya van varias veces y ni comentario por lo menos, pero bueno la ayuda es voluntaria.

Como lo resolvi solo era


Código Javascript:
Ver original
  1. "graphs": [ <% 
  2.     Dim P  
  3.     Set oConn = Server.CreateObject("ADODB.Connection")
  4.  
  5.    oConn.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("SSP.mdb"))
  6.    
  7.    strSQL = "SELECT Pieza FROM HistEPieza where Ubicacion='"&Depa&"' and Fecha=#"&Fecha&"#"
  8.    Set objRS = oConn.Execute(strSQL)      
  9.  
  10.                                        
  11.    
  12.    while (not objRS.Eof)
  13.    P=objRS("Pieza")
  14.    %>{
  15.        
  16.      
  17.    
  18.         "balloonText": "<b>[[title]]</b><br><span style='font-size:14px'>[[category]]: <b>[[value]]</b></span>",
  19.         "fillAlphas": 0.8,
  20.         "labelText": "[[value]]",
  21.         "lineAlpha": 0.3,
  22.        
  23.    
  24.         "title": "<%Response.Write("" & P & "")%>",
  25.    
  26.         "type": "column",      
  27.         "color": "#000000",
  28.    
  29.         "valueField": "<%Response.Write("" & P & "")%>",
  30.            
  31.     },<%
  32.            
  33.         objRS.MoveNext
  34.    wend
  35.  
  36.    
  37.    oConn.Close
  38.    set objRS = nothing
  39.    set oConn = nothing    
  40.    
  41.     %>]