Welcome![Sign In][Sign Up]
Location:
Search - request jsp

Search list

[WEB Code学生选课JSP

Description: 开发工具:WebSphere 压缩文件解压后为.ear格式,只能用WebSphere打开,然后按要求建数据库即可运行!-development tools : WebSphere compressed files unpacked for. Ear format, which can be used WebSphere opened, followed by a request to build the database can run!
Platform: | Size: 834202 | Author: 虞崇军 | Hits:

[Web Servertot-jsp-check

Description: 可以查看服务器上Request、Session、Cookie、Application的列表信息。 查看是否安装常见的JAVA类库。 查看服务器的内存使用情况。 查看服务器的JVM相关的所有信息(版本、时区、编码、操作系统名称等)。
Platform: | Size: 3477 | Author: 收和 | Hits:

[EditBoxjsp小技巧

Description: 如何混合使用Jsp和SSI #include? 在JSP中可以使用如下方式包含纯HTML: <!--#include file=\"data.inc\"--> 但是如果data.inc中包含JSP CODE ,我们可以使用: <%@include file=\"data.inc\"%> 如何执行一个线程安全的JSP? 只需增加如下指令 <%@ page isThreadSafe=\"false\" %> JSP如何处理HTML FORM中的数据? 通过内置的request对象即可,如下: <% String item = request.getParameter(\"item\") int howMany = new Integer(request.getParameter(\"units\")).intValue() %> 在JSP如何包含一个静态文件? 静态包含如下:<%@ include file=\"copyright.html\" %> 动态包含如下:<jsp:include page=\"copyright.html\" flush=\"true\"/> 在JSP中如何使用注释? 主要有四中方法: 1。<%-- 与 --%> 2。// 3。/**与**/ 4。<!--与-->-how mixed use Jsp and SSI # include JSP can be used as follows contains pure HTML : lt ;!--# include file = "data.inc" -- gt; But if data.inc JSP CODE contains, we can use : lt ; % @ include file = "data.inc"% gt; how to implement a security thread JSP only increased as follows instructions lt; % @ page isThreadSafe = "false"% gt; JSP HTML FORM how to handle the data through built-in object can request , as follows : lt; % String item = request.getParameter ( "item") int howMany = new Integer (request.getParameter ( "units")). intValue ()% gt; how the JSP contains a static document contains static as follows : lt; % @ include file = "copyright.html"% gt; Dynamic includes : lt; jsp : include page = "copyright.html" flush
Platform: | Size: 4154 | Author: 孙武 | Hits:

[JSP/Javajsp分页

Description: firsturl,nexturl,prevurl,lasturl tag: <;;;;;;;;;;;;;;;first_page>;;;;;;;;;;;;;;;,<;;;;;;;;;;;;;;;prev_page>;;;;;;;;;;;;;;;和<;;;;;;;;;;;;;;;next_page>;;;;;;;;;;;;;;; 上述变量也可分别属于对应的tag,但是有所区别。直接用,无论有无,都会显示连接(无时为#)。如果放于各自的tag中,无时不显示,有时显示。 这是一套jsp customer tag,用于分页显示。使用者只需告诉他总共有多少页。本例中是19页。用户的程序只需得到参数_pagecount(request.getParameter(";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;_pagecount";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;))或在标签pages_roller中使用变量pageno(<;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;%=pageno%>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;)就知道当前是哪一页了。 这套标签与界面完全无关,用户完全可以随意做出不同的界面风格。Demo: http://xiaolie.2myip.com/index.html
Platform: | Size: 22262 | Author: ericllzh@163.com | Hits:

[EditBoxjsp小技巧

Description: 如何混合使用Jsp和SSI #include? 在JSP中可以使用如下方式包含纯HTML: <!--#include file="data.inc"--> 但是如果data.inc中包含JSP CODE ,我们可以使用: <%@include file="data.inc"%> 如何执行一个线程安全的JSP? 只需增加如下指令 <%@ page isThreadSafe="false" %> JSP如何处理HTML FORM中的数据? 通过内置的request对象即可,如下: <% String item = request.getParameter("item") int howMany = new Integer(request.getParameter("units")).intValue() %> 在JSP如何包含一个静态文件? 静态包含如下:<%@ include file="copyright.html" %> 动态包含如下:<jsp:include page="copyright.html" flush="true"/> 在JSP中如何使用注释? 主要有四中方法: 1。<%-- 与 --%> 2。// 3。/**与**/ 4。<!--与-->-how mixed use Jsp and SSI# include JSP can be used as follows contains pure HTML : lt ;!--# include file = "data.inc"-- gt; But if data.inc JSP CODE contains, we can use : lt ; % @ include file = "data.inc"% gt; how to implement a security thread JSP only increased as follows instructions lt; % @ page isThreadSafe = "false"% gt; JSP HTML FORM how to handle the data through built-in object can request , as follows : lt; % String item = request.getParameter ( "item") int howMany = new Integer (request.getParameter ( "units")). intValue ()% gt; how the JSP contains a static document contains static as follows : lt; % @ include file = "copyright.html"% gt; Dynamic includes : lt; jsp : include page = "copyright.html" flush
Platform: | Size: 4096 | Author: 孙武 | Hits:

[WEB Code学生选课JSP

Description: 开发工具:WebSphere 压缩文件解压后为.ear格式,只能用WebSphere打开,然后按要求建数据库即可运行!-development tools : WebSphere compressed files unpacked for. Ear format, which can be used WebSphere opened, followed by a request to build the database can run!
Platform: | Size: 833536 | Author: 虞崇军 | Hits:

[source in ebookjspnetcode

Description: 《JSP网络编程从基础到实践》的实例代码目录中包含了前10章的所有实例的源代码,实例名称及其所处章节如下: 第1章 JSP技术概述 实例1 第一个JSP页面 第3章 Web开发基础 实例2 HTML与JavaScript交互示例 第4章 JSP语法 实例3 JSP程序的基本结构 实例4 简单数据类型综合应用实例 实例5 包装类综合应用实例 实例6 数组应用实例 实例7 字符截取程序示例 实例8 查找字符串程序示例 实例9 StringBuffer综合应用程序示例 实例10 日期数据应用示例 实例11 算术表达式综合运用实例 实例12 switch语句示例 实例13 循环应用综合实例 实例14 一个简单的计数器 实例15 include指令应用示例 实例16 forward应用程序示例 实例17 param应用程序示例 实例18 plugin应用程序示例 实例19 中文字符处理程序示例 第5章 JSP的内置对象 实例20 request常用方法的应用 实例21 获得表单数据 实例22 页面重定向程序示例 实例23 定时刷新页面程序示例 实例24 记住会话的用户名 实例25 猜字母游戏 实例26 网站计数器-"JSP programming from the network infrastructure to practice" examples of code directory contains 10 chapters before all the examples source code, and examples of names which sections are as follows : Chapter 1 JSP example of a resolution outlining a JSP pages in Chapter 3 examples based Web development with HTML J 2 avaScript interactive examples Chapter 4 JSP syntax examples of three JSP the basic structure of a few simple examples 4 According to the type of integrated application packaging category five examples of integrated application examples 6 array Application examples seven characters interception procedures Example 8 Example search string procedures example examples 9 StringBuffer integrated application examples of a sample 0 Date Data Application Example 11 examples o
Platform: | Size: 395264 | Author: xk | Hits:

[Web Servertot-jsp-check

Description: 可以查看服务器上Request、Session、Cookie、Application的列表信息。 查看是否安装常见的JAVA类库。 查看服务器的内存使用情况。 查看服务器的JVM相关的所有信息(版本、时区、编码、操作系统名称等)。-Can view the server Request, Session, Cookie, Application of a list of information. To see if the installation of common JAVA class library. See the server s memory usage. See server JVM all related information (version, time zone, coding, operating system name, etc.).
Platform: | Size: 3072 | Author: 收和 | Hits:

[Browser Clientcode

Description: JSP四种属性范围,详细测试了四种属性包括page,request,session,application的应用-JSP four attributes scope, detailed testing of the four properties include the page, request, session, application Application
Platform: | Size: 2048 | Author: 平常心 | Hits:

[JSP/Javatotjspcheck

Description: 可以查看服务器上Request、Session、Cookie、Application的列表信息。 查看是否安装常见的JAVA类库。 查看服务器的内存使用情况。 查看服务器的JVM相关的所有信息(版本、时区、编可以查看服务器上Request、Session、Cookie、Application的列表信息。 查看是否安装常见的JAVA类库。 查看服务器的内存使用情况。 查看服务器的JVM相关的所有信息(版本、时区、编码、操作系统名称等)。码、操作系统名称等)。-Can view the server Request, Session, Cookie, Application of a list of information. To see if the installation of common JAVA class library. See the server
Platform: | Size: 4096 | Author: arui | Hits:

[JSP/Javajsp+sql2000

Description: 本系统采用Servlet+Jsp+JavaBean+SQL2000 设计方式,其中Servlet担当主要逻辑控制,通过接受Jsp传来的用户请求,调用以及初始化JavaBean,在通过Jsp传到客户端,本系统中SqlBean担当主要的与数据库的连接与通信,JavaBean在本系统中主要担当配合Jsp以及Servlet来完成用户的请求,而Jsp主要担当接受与响应客户端。-The system uses Servlet+ Jsp+ JavaBean+ SQL2000 design, which play a major logic control Servlet, Jsp coming through to accept the request of users, as well as the call to initialize JavaBean, spread through Jsp client, the system play a major SqlBean with database connectivity and communication, JavaBean in this system plays mainly with Jsp and Servlet to complete the user s request, and accept Jsp plays mainly in response to the client.
Platform: | Size: 427008 | Author: 齐明 | Hits:

[SQL Serverxskjgl

Description: 本系统采用Servlet+Jsp+JavaBean+SQL2000 设计方式,其中Servlet担当主要逻辑控制,通过接受Jsp传来的用户请求,调用以及初始化JavaBean,在通过Jsp传到客户端,本系统中SqlBean担当主要的与数据库的连接与通信,JavaBean在本系统中主要担当配合Jsp以及Servlet来完成用户的请求,而Jsp主要担当接受与响应客户端。-The system uses Servlet+ Jsp+ JavaBean+ SQL2000 design, which play a major logic control Servlet, Jsp coming through to accept the request of users, as well as the call to initialize JavaBean, spread through Jsp client, the system play a major SqlBean with database connectivity and communication, JavaBean in this system plays mainly with Jsp and Servlet to complete the user s request, and accept Jsp plays mainly in response to the client.
Platform: | Size: 382976 | Author: my name | Hits:

[WEB Coderequest

Description: 用户留言板,利用jsp中的request对象,可以获得客户提交的信息。比如:JSP文件目录、客户端的地址、以及服务器的端口等。-Message board users, the use of jsp the request object, access to customer information submitted. For example: JSP file directory, the client s address, as well as ports, such as servers.
Platform: | Size: 2048 | Author: zmq | Hits:

[JSP/JavaJSP-request

Description: 一个登陆页面,可输入用户名和密码,点击登录按钮将数据传递到canshu.class文件。-A landing page, enter the user name and password, click on the login button on the data passed to canshu.class document.
Platform: | Size: 1024 | Author: louccc | Hits:

[WEB CodeFilesUpload

Description: 简单说明: 1、文件说明: css为css样式文件目录; js为主要实现代码目录; testUpload.htm为简单示例文件; 2、主要文件说明: common.js - 主要通用功能文件 upload.js - 主类文件 3、调用代码: <script type="text/javascript">ocUpload.init(6) </script> 说明: ocUpload.init(6) 中间设置的参数6,为一次可最多可用的上传控件file的数量; 4、获取表单file内容: 生成的代码中,file控件的name为:file1, file2, file3... 以此类推, 所以,在后台的处理页面中,获取表单为: ASP中: request("file1"), request("file2") ... JSP中: request.getParameters("file1") request.getParameters("file2") -Multiple Files Uploading SourceCode
Platform: | Size: 4096 | Author: 张平安 | Hits:

[JSP/JavaStudentmarking

Description: 学生课绩管理系统,全部设计图和文档,非常好的学习资料,系统由登陆模块,学生模块,教师模块,管理员模块,四部分组成,学生登陆以后,可以选报课程。教师在本系统中拥有是否接受学生所选课程,以及给学生打分的权力。 本系统采用Servlet+Jsp+JavaBean+SQL2000 设计方式,其中Servlet担当主要逻辑控制,通过接受Jsp传来的用户请求,调用以及初始化JavaBean,在通过Jsp传到客户端,本系统中SqlBean担当主要的与数据库的连接与通信,JavaBean在本系统中主要担当配合Jsp以及Servlet来完成用户的请求,而Jsp主要担当接受与响应客户端。-Student class performance management system, all design drawings and documents, a very good learning materials, the system by the landing module, module students, teachers, modules, administrator module, four parts, landing students, the curriculum can be reported to the election. Teachers in the system whether or not to accept students have selected courses, and give the power to grade students. The system uses a Servlet+ Jsp+ JavaBean+ SQL2000 design, play one of the main logic control Servlet, Jsp by accepting from the user request, and calls initialize JavaBean, at Jsp passed through the client, the system play a major SqlBean with the database connection and communication, JavaBean in the main role of the system with Jsp and Servlet to achieve the user s request, and accept Jsp plays mainly in response to the client.
Platform: | Size: 384000 | Author: 刘晓东 | Hits:

[JSP/JavaITextTest

Description: 主题:用iText输出PDF报表 内容组织: 1. 自我介绍 2. 简要介绍报表是什么 3. 为什么要输出PDF,介绍PDF的优点 4. 讲解如何输出到PDF,使用iText JAR包 5. 简介iText开源项目的背景 6. iText相关API介绍 7. iText使用步骤 8. 小练习(验证性小程序),现场编程,要求如下: (1)往PDF文件中加入文字。 (2)定制PDF页面尺寸。 (3)往PDF文件中加入图像文件。 (4)往PDF文件中加入表格。 9. 完成最终目标(建立企业报表输出程序),现场编程,要求如下: 数据库Test中有一个book表,存储了关于图书的信息。建立一个Web程序,在JSP页面上显示一个查询的表单,可以根据图书名称、作者、出版社、价格来查询符合条件的图书信息。JSP页面提供三个按钮,分别是“显示在HTML”,“显示在PDF”,“下载PDF”,根据用户的选择实现不同的功能,如选择第一项,那么就像普通的Web程序一样,在JSP网页上输出查询结果,如果选择第二项,就在页面上显示动态生成的PDF文件,第三项就是下载包含查询结果的PDF文件。显然,第二项是我们的重点工作。 -Topic:Use the iText exportation PDF statement The contents organize: 1. Introduce myself 2. The synopsis introduction statement is what 3. Why want to output PDF, introduce a PDF advantage 4. Explain in detail how to output PDF, use iText JAR to wrap 5. The brief introduction iText opens the background of source item 6. The iText related API introduce 7. The iText uses a step 8. Small practice(the verification small procedure), the spot plait distance, request as follows: (1)Go toward to join a writing in the PDF document. (2)Make to order a PDF page size. (3)Go toward to join a picture document in the PDF document. (4)Go toward to join a form in the PDF document. 9. Complete an end target(establishment business enterprise statement output procedure), the spot plait distance, Be request as follows: There is a book form in the database Test, saved an information concerning book.Build up a Web procedure, show a form and list of search on the JSP page, can search a book inf
Platform: | Size: 1636352 | Author: wtc | Hits:

[JSP/JavaJSP

Description: Request代表请求实体,包含请求数据 request.getParameter(“表单元素”) 返回String类型-Request代表请求实体,包含请求数据 request.getParameter(“表单元素”) 返回String类型
Platform: | Size: 2508800 | Author: 张宝礼 | Hits:

[WEB CodeAjaxDataTable

Description: Ajax无刷新分页(jQuery+Json) 做了一个用jQuery来实现的用户控件,VS2008+Access 只用来玩玩.所以就用Access数据库了 jQuery+ashx+JSON 用ashx来接收请求,数据格式为JSON 实现了批量(选择)操作,编辑接口(反回两个值给用户进行自定义操作) 删除,自定义列(反回两个值给用户进行自定义操作) 样式变代(也就是写了两个样式表而以) 转换列(也就是你数据库里是1,0什么的,转成对应的男女的中文) 每页显示的记录条数在config里面设置 -Ajax without refreshing page (jQuery+ Json) made using jQuery to implement a user control, VS2008+ Access is only used to play. So I use Access database, a jQuery+ ashx+ JSON with ashx to receive the request, the data format is JSON implementation of batch (select) operation, editing interface (anti-two values back to the user to customize the operation) to delete, custom columns (anti-two values back to the user to customize the operation) on behalf of the style change (ie, written 2 style tables in order to) to the column (that is, what is your database is 1,0, and converted into the corresponding Chinese men and women) the number of records per page which is set in the config
Platform: | Size: 61440 | Author: fugang | Hits:

[JSP/Javajsp

Description: jsp request和session对象的使用-jsp request and session
Platform: | Size: 29696 | Author: 李洋 | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net