ASP Pattern Technology Standards
<% Set conn = Server.CreateObject("ADODB.CONNECTION") conn.open DBCon on error resume next connect.errors.clear "error on connection" sql = "select TRM_ID, LAYER, SUB_LAYER, TECHNOLOGY, STANDARD_TECH FROM TRM WHERE MAINFRAME =1 ORDER BY LAYER DESC, SUB_LAYER, TECHNOLOGY" on error resume next set rs = conn.execute(sql) if conn.errors.count > 0 then response.write("error, there is a problem") end if %>