


paip.PHP-asp—jsp implements event mechanism WEBFORM style development
Foreword... 1
CODE Behind code separation... 1
Page controls... 1
Implement a form... 2
Realize state VIEWSTATE saving... 2
Page_Ini event and Page_Load event... 3
Implement button1_click event... 4
Implement button2_click event... 4
Note: webform.CodeFile.php source code... 5
Foreword
We all know that asp.net is developed in the WEBFORM style, which is easy to understand and based on the event mechanism. The development efficiency is much faster than the MVC method.
PHP, ASP, and JSP can also be developed using WEBFORM. Here we use PHP as an example to illustrate how to develop WEBFORM-style development..
CODE Behindcode separation
If you need to achieve code separation, in addition to MVC, you can also use Code-Behind technology to achieve it. It is simpler and the development efficiency is much faster than MVC. And it is easy to achieve modularization and componentization
In me we implement two pages, one for the interface HTML code, named webform.php, and one for the code, named webform.CodeFile.php
To implement CODE Behind, add the following code in the first line of webform.php:
Page Controls
In ASP. NET, we use RUNAT="SERVER" to indicate that an HTML control can be referenced on the server side. In PHP, a workaround is needed to achieve
LABEL control:
Textbox control:
Implement a form
Here we need a LABLE, a TEXTBOX control, and two button controls..
Our requirement is that when the first button is clicked, the LABLE and TEXTBOX values are set to button1 click…
When the second button is clicked, set the LABLE value to the input value in TEXTBOX
The total code is as follows
Implement state VIEWSTATE saving
In the CODE Behind file, webform.CodeFile.php.. We write code to save the state of the front-end interface control. . When the interface returns after submission, the control values are all in..
//Keep control status, viewstate management
viewstate();
//__VIEWSTATE
function viewstate()
{
foreach ($_REQUEST as $color){
$key=key($_REQUEST);
$controlName=$key."_Text";
// echo ($key."---".$color."
");
global $$controlName;
$$controlName =$color;
next($_REQUEST);
}
}
Page_Ini event and Page_Load event
When we access this form for the first time, the Page_Ini event is triggered. Every time we access this page, the Page_Load event is always triggered..
//Page event registration
eventReg4Page();
function Page_Ini()
{
echo "page ini event ";
global $Label1_Text;
$Label1_Text=" Page_Ini click";
global $TextBox1_Text;
$TextBox1_Text=" Page_Ini click";
}
function Page_Load()
{
echo "page load event ";
}
Implement button1_click event
//Control event registration
eventReg("Button1",Button1_Click);
//Click event of button control Button1
function Button1_Click()
{
global $TextBox1_Text;
$TextBox1_Text=" button1 click";
global $Label1_Text;
$Label1_Text=" button1 click";
}
//Event registration
function eventReg($controlName,$controlEvent)
{
if($_POST[$controlName])
$controlEvent();
}
Implement button2_click event
//Click event of button control Button2
function Button2_Click()
{
global $TextBox1_Text;
// $TextBox1_Text=" button2 click";
global $Label1_Text;
$Label1_Text=$TextBox1_Text;
}
Note: webform.CodeFile.php source code
//Keep control state, viewstate management
viewstate();
//Control event registration
eventReg("Button1",Button1_Click);
eventReg("Button2",Button2_Click);
//Page event registration
eventReg4Page();
function Page_Ini()
{
echo "page ini event ";
global $Label1_Text;
$Label1_Text=" Page_Ini click";
global $TextBox1_Text;
$TextBox1_Text=" Page_Ini click";
}
function Page_Load()
{
echo "page load event ";
}
//Click event of button control Button1
function Button1_Click()
{
global $TextBox1_Text;
$TextBox1_Text=" button1 click";
global $Label1_Text;
$Label1_Text=" button1 click";
}
//Click event of button control Button2
function Button2_Click()
{
global $TextBox1_Text;
// $TextBox1_Text=" button2 click";
global $Label1_Text;
$Label1_Text=$TextBox1_Text;
}
//-----------------The following functions can be included as public functions------------------ -
//Event registration
function eventReg($controlName,$controlEvent)
{
if($_POST[$controlName])
$controlEvent();
}
//Page event registration
function eventReg4Page()
{
if(!$_POST)
{
if(function_exists("Page_Ini"))
call_user_func("Page_Ini");
}
//Register Page_Load event
if(function_exists("Page_load"))
call_user_func("Page_load");
}
//__VIEWSTATE
function viewstate()
{
foreach ($_REQUEST as $color){
$key=key($_REQUEST);
$controlName=$key."_Text";
echo ($key."---".$color."
");
global $$controlName;
$$controlName =$color;
next($_REQUEST);
}
}
?>

jsp属于后端。jsp的本质是一种servlet,而servlet又是服务器端的java应用程序,所以jsp是属于后端的技术。JSP部署于网络服务器上,可响应客户端发送的请求,并根据请求内容动态地生成HTML、XML或其他格式文档的Web网页,然后返回给请求者。JSP技术以Java作为脚本语言,为用户HTTP请求提供服务,并能与服务器上的其它Java程序共同处理复杂的业务需求。

新建好springboot项目以后目录如下:第一步:在项目的pom文件中加入配置jsp所需要的jar包代码:org.apache.tomcat.embedtomcat-embed-jasperprovided第二步:在main路径下新建目录webapp,在webapp下新建路径WEB-INF,在WEB-INF下新建路径jsp,在这个路径下放置我们要使用的jsp文件第三步:在主配置文件中配置jsp文件的访问路径和后缀代码:spring.mvc.view.prefix=/WEB-INF/jsp/sp

实现步骤:1、在JSP页面中引入JSTL标签库;2、从数据库中获取数据;3、对数据进行分页处理;4、在页面中显示分页导航条;5、根据当前页码和每页显示数量,从分页后的数据中获取对应的数据并显示在页面上即可。

jsp和html区别:1、运行机制;2、用途;3、与Java的关系;4、功能;5、与后端的关系;6、速度;7、可维护性和扩展性;8、学习和使用的难易程度;9、文件后缀和识别工具;10、社区和支持;11、安全性。详细介绍:1、运行机制,HTML是一种标记语言,主要用于描述和定义网页的内容,它运行在客户端,由浏览器解释执行,JSP是一种动态网页技术,运行在服务器端等等。

JSP是一种动态网页技术标准,其文件格式是在传统的网页HTML文件(.htm,.html)中插入Java程序段(Scriptlet)和JSP标记(tag),从而形成JSP文件(*.jsp)。

一、实现分页查询的核心sql语句(1)查询数据库的记录总数的sql语句:selectcount(*)from+(表名);(2)每次查询的记录数的sql语句:其中:0是搜索的索引,2是每次查找的条数。select*from表名limit0,2;二、代码实现*上篇写过这两个类,DBconnection类:用于获取数据库连接,Author对象类。这两个类的代码点击连接查看。点击链接查看DBconnection类和Author对象类(1)登录页面:index.jsp。Inserttitlehere用户列

JavaWeb开发技术栈:掌握JavaEE、Servlet、JSP、Spring等用于Web开发的技术随着互联网的迅速发展,在当今的软件开发领域,Web应用的开发已经成为一种非常重要的技术需求。而Java作为一种广泛应用的编程语言,其在Web开发领域也有着重要的地位。JavaWeb开发技术栈涉及多项技术,如JavaEE、Servlet、JSP、Spr

jsp中iframe是一种用于嵌入其他网页或文档的HTML标签,可以实现页面的分割、动态加载、异步加载和跨域访问等功能。它为开发人员提供了更多的灵活性和交互性,可以提高网页的可用性和用户体验。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
