📄 testauthv.tag
字号:
<%@ tag body-content="empty" %>
<%@ attribute name="auth" required="true" %>
<%@ attribute name="privilege" required="true" %>
<%@ attribute name="var" type="java.lang.String" rtexprvalue="false" required="true" %>
<%@ variable name-from-attribute="var" alias="result" scope="AT_END" %>
<%@ include file="/Components/tourFunLibs.jsp" %>
<%
boolean result;
try
{
result = tflHasAuth((char)Integer.parseInt(auth), privilege);
}
catch(Exception e)
{
result = false;
}
jspContext.setAttribute("result", new Boolean(result));
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -