JSP编程
JSP全名为Java Server Pages,中文名叫java服务器页面,JSP将网页逻辑与网页设计的显示分离,支持可重用的基于组件的设计,使基于Web的应用程序的开发变得迅速和容易。 JSP(JavaServer Pages)是一种动态页面技术,它的主要目的是将表示逻辑从Servlet中分离出来。
-
IBM HTTP Server 远程溢出漏洞
【JSP编程】涉及程序: GET 描述: 通过提交超长的GET请求导致IBM HTTP Server远程溢出详细: IBM 的 HTTP 服务器是一个 web 服务器。在 Windows NT 使用的版本中存在拒绝服务的漏洞。如果提交一个超过219个字符的 GET 请求,将导致服务器停止响应,并报错。要恢复服务正常工作需要重新启动应用程序。成功的利用...
|IB|BM|MH|HT|TT|TP|PS|Se|er|rv|ve|er|r远|远程|程溢|溢出|出漏|漏洞|洞| -
jsp源码实例3(获取jsp各种参数)
【JSP编程】package coreservlets;import java.io.*;import javax.servlet.*;import javax.servlet.http.*;import java.util.*;/** Creates a table showing the current value of each* of the standard CGI variables.* <P>* Taken from Core Servlets and JavaServer Pages* from Prentice Hall and Sun M...
|js|sp|p源|源码|码实|实例|例3|3(|(获|获取|取j|js|sp|p各|各种|种参|参数|数)|)| -
Sun认为C#不会替代Java
【JSP编程】Microsoft(微软公司)说∶C#同Java不一样,将成为一个国际性标准。 C#同Java较量的第一局比赛已经开始,Sun公司声称Microsoft已经给一个不相关的标准委员会递交了一个另人混淆的、不完善的技术标准。 Sun公司的工程师们自Microsoft公司于星期一发布了C#标准以来,一直在仔细搜寻C#标准的技术信息,并且宣称C...
|Su|un|n认|认为|为C|C不|不会|会替|替代|代J|Ja|av|va|a| -
IBM WebSphere源代码暴露漏洞
【JSP编程】bugtraq id 1500 class Access Validation Error cve GENERIC-MAP-NOMATCH remote Yes local Yes published July 24, 2000 updated July 24, 2000 vulnerable IBM Websphere Application Server 3.0.21- Sun Solaris 8.0- Microsoft Windows NT 4.0- Linux kernel 2.3.x- IBM AIX 4.3...
|IB|BM|MW|We|eb|bS|Sp|ph|he|er|re|e源|源代|代码|码暴|暴露|露漏|漏洞|洞| -
jsp计数器代码
【JSP编程】<!-- JSP-Hitcounter counts sessions.Copyright (C) 2000 Jesper Schmitz Mouridsen. Visit www.webappcabaret/jsm2/webapps.jsp?find=jsphcs for more info. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License ...
|js|sp|p计|计数|数器|器代|代码|码| -
jsp源码实例2(获取表单参数)
【JSP编程】package coreservlets;import java.io.*;import javax.servlet.*;import javax.servlet.http.*;import java.util.*;/** Shows all the parameters sent to the servlet via either* GET or POST. Specially marks parameters that have* no values or multiple values.* <P>* Taken from Core S...
|js|sp|p源|源码|码实|实例|例2|2(|(获|获取|取表|表单|单参|参数|数)|)| -
jsp源码实例4(搜索引擎)
【JSP编程】package coreservlets;import java.io.*;import javax.servlet.*;import javax.servlet.http.*;import java.net.*;public class SearchEngines extends HttpServlet {public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException, IOException {String searchSt...
|js|sp|p源|源码|码实|实例|例4|4(|(搜|搜索|索引|引擎|擎)|)| -
jsp源码实例5(cookie)
【JSP编程】package coreservlets;import java.io.*;import javax.servlet.*;import javax.servlet.http.*;/** Sets six cookies: three that apply only to the current* session (regardless of how long that session lasts)* and three that persist for an hour (regardless of* whether the browser is restarted).* <P&...
|js|sp|p源|源码|码实|实例|例5|5(|(c|co|oo|ok|ki|ie|e)|)| -
邮件发送简单例子-bean文件
【JSP编程】SimpleSendMessage.javaimport java.util.*;import javax.mail.*;import javax.mail.internet.*;import javax.activation.*;public class SimpleSendMessage {public static void main(String[] args) {// Collect the necessary information to send a simple message// Make sure to replace the values...
|邮件|件发|发送|送简|简单|单例|例子|子b|be|ea|an|n文|文件|件| -
邮件发送简单例子-html文件
【JSP编程】<html><head><title>JavaMail Form</title></head><body><form action="/purejsp/MailExample.jsp" method="post"><table cellspacing="2" cellpadding="2" border="1"><tr>&...
|邮件|件发|发送|送简|简单|单例|例子|子h|ht|tm|ml|l文|文件|件| -
邮件发送简单例子-jsp文件
【JSP编程】MailExample.jsp<html><head><title>JSP JavaMail Example </title></head><body><%@ page import="java.util.*" %><%@ page import="javax.mail.*" %><%@ page import="javax.mail.internet.*&q...
|邮件|件发|发送|送简|简单|单例|例子|子j|js|sp|p文|文件|件| -
jsp源码实例1(输出)
【JSP编程】package coreservlets;import java.io.*;import javax.servlet.*;import javax.servlet.http.*;/** Simple servlet that generates HTML.* <P>* Taken from Core Servlets and JavaServer Pages* from Prentice Hall and Sun Microsystems Press,* http://www.coreservlets.com/.* &...
|js|sp|p源|源码|码实|实例|例1|1(|(输|输出|出)|)|