/SQL/scripts/inc/mla_sql_error.asp
http://github.com/khaneh/Orders · ASP · 34 lines · 34 code · 0 blank · 0 comment · 0 complexity · 572f04815006f1f5c3c18363f5757db8 MD5 · raw file
- <%
- Sub mla_displayError(pErr, pStr)
- Dim myStrHTML
- closeConnection()
- %>
- <!-- #INCLUDE FILE="../inc/metaheader.asp" -->
- <BODY>
- <P> </P>
- <FORM METHOD=POST ACTION=#>
- <TABLE BORDER=0 CELLPADDING=2 CELLSPACING=0 CLASS="hcontent" WIDTH=50% ALIGN=CENTER SUMMARY="Error Information">
- <TR><TD CLASS="caption" COLSPAN=2><IMG SRC="../../themes/<% = mla_cfg_theme %>/images/action/error.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALIGN="MIDDLE" ALT="Error"> <% = myTObj.getTerm(66) & " " & pErr.Number %></TD></TR>
- <TR>
- <TD><IMG SRC="../../themes/<% = mla_cfg_theme %>/images/obj32/error.gif" WIDTH="32" HEIGHT="32" BORDER=0 ALT="Error"></TD>
- <TD CLASS="forminfo"><B><% = myTObj.getTerm(66) & " " & pErr.Number %></B></TD>
- </TR>
- <TR>
- <TD> </TD>
- <TD>
- <P><% = pErr.Description %></P>
- <P><% = txt2html(pStr) %></P>
- </TD>
- </TR>
- <TR><TD COLSPAN=2> </TD></TR>
- <TR><TD COLSPAN=2 ALIGN=CENTER><INPUT TYPE="button" VALUE="<% = myTObj.getTerm(67) %>" onClick="history.go(-1);"></TD></TR>
- </TABLE>
- </FORM>
- <P> </P>
- </BODY>
- </HTML>
- <!-- #INCLUDE FILE="../inc/mla_sql_end.asp" -->
- <%
- Response.End
- End Sub
- %>