⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 core-rt.jsp

📁 用jsp语言自己做的一个网站bookshot的全套程序以及一些样例。完全属于原创。
💻 JSP
字号:
<%@ page language="java" contentType="text/html" %>
<%@ taglib prefix="c_rt" uri="http://java.sun.com/jstl/core_rt" %>
<html>
  <head>
    <title>Browser Check</title>
  </head>
  <body bgcolor="white">

    <% String userAgent = request.getHeader("User-Agent"); %>
    <c_rt:choose>
      <c_rt:when test='<%= userAgent.indexOf("MSIE") != -1 %>' >
         You're using Internet Explorer.
      </c_rt:when>
      <c_rt:when test='<%= userAgent.indexOf("Mozilla") != 1 %>' >
         You're probably using Netscape.
      </c_rt:when>
      <c_rt:otherwise>
         You're using a browser I don't know about.
      </c_rt:otherwise>
    </c_rt:choose>

  </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -