在我的应用程序中,输入客户信息是可选的。如果输入它是必需的,则用户获得弹出窗口,稍后将其定向到设置配置页面。如果没有,他们只会看到Set config图标。我有以下jsp代码,如果布尔值enterInfo为true,我基本上给客户端一个弹出窗口输入他们的详细信息。如果用户没有该权限,则会看到设置配置图标。但是,就我而言,如果用户没有权限,他们仍然会看到设置配置页面。我只希望他们看到图标。我以前从未使用过jsp,所以请在downvotes / comments上轻松一下;)
这是jsp代码 -
<%if(myenrollment){
boolean isPrivUser = FetchInfo.isPrivUser();%>
<div class="showBrowser" style="display:block"><img src="<%= iphoneIcon %>" height="250px" width="250px"></div>
<%if(isPrivUser) %>
<div class="textSize" style="font-size:50;font-family:Helvetica;"><p><b>Entering the details</b></p></div>
<%}else {%>
<img src="<%=profileIcon%>" height="100px" width="100px" style="margin-top: 20px;">
<div class="textSize" style="font-size:40;font-family:Times new roman;"><p><b>Setting the config..</b></p></div>
<%} %>