<% Const adLockReadOnly = 1 Const adOpenStatic = 1 Const adUseClient = 3 Dim connStr connStr = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & _ Server.MapPath("../../uiuchf.mdb") Dim objRS Set objRS = Server.CreateObject("ADODB.Recordset") objRS.CursorLocation = adUseClient objRS.Open "SELECT * FROM news", connStr, adOpenStatic, adLockReadOnly %>
Human Factors at UIUC Image Background
About People Research Teaching Resources
UIUC Human Factors Home
UIUC Human Factors Home Home > News & Events


The following images were taken from Sandy Hart's quilt, presented at the Applied Attention Conference. Click on any image for a larger version.


<% objRS.Close Set objRS = Nothing %>