13 lines
472 B
Plaintext
13 lines
472 B
Plaintext
<%@page import="com.tenwa.util.SerialNumberUtil"%>
|
|
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/IncludeBeginMDAJAX.jsp"%><%
|
|
String attrId = CurPage.getAttribute("AttributeId");
|
|
String result = "SUCCESS";
|
|
try {
|
|
Sqlca.executeSQL(new SqlObject("delete from lb_docattribute where id = '" + attrId + "'"));
|
|
} catch(Exception e) {
|
|
e.printStackTrace();
|
|
result = "FAILED";
|
|
}
|
|
out.print(result);
|
|
%><%@ include file="/IncludeEndAJAX.jsp"%> |