<%@ LANGUAGE="VBScript" %> <% Set Connection = Server.CreateObject("ADODB.Connection") Connection.Mode = adModeRead Connection.Open phdb_rd SQLStmt="SELECT se.batch,se.sensor,se.bonding_pattern,se.pad,se.bias,se.capacitance,se.testdate FROM sensor se,sensor_log sl" SQLStmt= SQLStmt & " WHERE se.startdate=sl.logdate" SQLStmt= SQLStmt & " AND sl.rowid='" & Request("rowid_x") & "'" SQLStmt= SQLStmt & " AND se.bonding_pattern=" & Request("bonding_pattern_x") SQLStmt= SQLStmt & " AND se.pad=" & Request("pad_x") SQLStmt= SQLStmt & " ORDER BY se.bias" Set RS = Connection.Execute(SQLStmt) %> Sensor CV Data for single pad

CV measurement

Batch <%=RS("Batch")%>
Sensor <%=RS("Sensor")%>
(Bonding_Pattern,Pad) &bonding_pattern_x=<%=RS("bonding_pattern")%>&pad_x=<%=RS("pad")%>">(<%=RS("bonding_pattern")%>,<%=RS("Pad")%>)
Startdate <%=RS("Testdate")%>

 

<% Do While Not RS.EOF %> <% RS.Movenext Loop Connection.Close %>
Voltage[V] Capacitance[pF]
<%=RS("Bias")%> <%=RS("Capacitance")%>