Home Backend Development PHP Tutorial paip.PHP-asp—jsp implements event mechanism WEBFORM style development_PHP tutorial

paip.PHP-asp—jsp implements event mechanism WEBFORM style development_PHP tutorial

Jul 13, 2016 pm 05:54 PM
jsp event accomplish develop mechanism

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

input:

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);

}

}

?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477976.htmlTechArticlepaip.PHP-aspjsp implements event mechanism WEBFORM development Preface... 1 CODE Behind code separation... 1 Page control... 1 Implement a form... 2 Implement state VIEWSTATE to save... 2 Page_Ini event and...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement dual WeChat login on Huawei mobile phones? How to implement dual WeChat login on Huawei mobile phones? Mar 24, 2024 am 11:27 AM

How to implement dual WeChat login on Huawei mobile phones? With the rise of social media, WeChat has become one of the indispensable communication tools in people's daily lives. However, many people may encounter a problem: logging into multiple WeChat accounts at the same time on the same mobile phone. For Huawei mobile phone users, it is not difficult to achieve dual WeChat login. This article will introduce how to achieve dual WeChat login on Huawei mobile phones. First of all, the EMUI system that comes with Huawei mobile phones provides a very convenient function - dual application opening. Through the application dual opening function, users can simultaneously

Four recommended AI-assisted programming tools Four recommended AI-assisted programming tools Apr 22, 2024 pm 05:34 PM

This AI-assisted programming tool has unearthed a large number of useful AI-assisted programming tools in this stage of rapid AI development. AI-assisted programming tools can improve development efficiency, improve code quality, and reduce bug rates. They are important assistants in the modern software development process. Today Dayao will share with you 4 AI-assisted programming tools (and all support C# language). I hope it will be helpful to everyone. https://github.com/YSGStudyHards/DotNetGuide1.GitHubCopilotGitHubCopilot is an AI coding assistant that helps you write code faster and with less effort, so you can focus more on problem solving and collaboration. Git

Learn how to develop mobile applications using Go language Learn how to develop mobile applications using Go language Mar 28, 2024 pm 10:00 PM

Go language development mobile application tutorial As the mobile application market continues to boom, more and more developers are beginning to explore how to use Go language to develop mobile applications. As a simple and efficient programming language, Go language has also shown strong potential in mobile application development. This article will introduce in detail how to use Go language to develop mobile applications, and attach specific code examples to help readers get started quickly and start developing their own mobile applications. 1. Preparation Before starting, we need to prepare the development environment and tools. head

Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent Apr 07, 2024 am 09:10 AM

On March 3, 2022, less than a month after the birth of the world's first AI programmer Devin, the NLP team of Princeton University developed an open source AI programmer SWE-agent. It leverages the GPT-4 model to automatically resolve issues in GitHub repositories. SWE-agent's performance on the SWE-bench test set is similar to Devin, taking an average of 93 seconds and solving 12.29% of the problems. By interacting with a dedicated terminal, SWE-agent can open and search file contents, use automatic syntax checking, edit specific lines, and write and execute tests. (Note: The above content is a slight adjustment of the original content, but the key information in the original text is retained and does not exceed the specified word limit.) SWE-A

How to implement the WeChat clone function on Huawei mobile phones How to implement the WeChat clone function on Huawei mobile phones Mar 24, 2024 pm 06:03 PM

How to implement the WeChat clone function on Huawei mobile phones With the popularity of social software and people's increasing emphasis on privacy and security, the WeChat clone function has gradually become the focus of people's attention. The WeChat clone function can help users log in to multiple WeChat accounts on the same mobile phone at the same time, making it easier to manage and use. It is not difficult to implement the WeChat clone function on Huawei mobile phones. You only need to follow the following steps. Step 1: Make sure that the mobile phone system version and WeChat version meet the requirements. First, make sure that your Huawei mobile phone system version has been updated to the latest version, as well as the WeChat App.

PHP Programming Guide: Methods to Implement Fibonacci Sequence PHP Programming Guide: Methods to Implement Fibonacci Sequence Mar 20, 2024 pm 04:54 PM

The programming language PHP is a powerful tool for web development, capable of supporting a variety of different programming logics and algorithms. Among them, implementing the Fibonacci sequence is a common and classic programming problem. In this article, we will introduce how to use the PHP programming language to implement the Fibonacci sequence, and attach specific code examples. The Fibonacci sequence is a mathematical sequence defined as follows: the first and second elements of the sequence are 1, and starting from the third element, the value of each element is equal to the sum of the previous two elements. The first few elements of the sequence

PHP Game Requirements Implementation Guide PHP Game Requirements Implementation Guide Mar 11, 2024 am 08:45 AM

PHP Game Requirements Implementation Guide With the popularity and development of the Internet, the web game market is becoming more and more popular. Many developers hope to use the PHP language to develop their own web games, and implementing game requirements is a key step. This article will introduce how to use PHP language to implement common game requirements and provide specific code examples. 1. Create game characters In web games, game characters are a very important element. We need to define the attributes of the game character, such as name, level, experience value, etc., and provide methods to operate these

Master how Golang enables game development possibilities Master how Golang enables game development possibilities Mar 16, 2024 pm 12:57 PM

In today's software development field, Golang (Go language), as an efficient, concise and highly concurrency programming language, is increasingly favored by developers. Its rich standard library and efficient concurrency features make it a high-profile choice in the field of game development. This article will explore how to use Golang for game development and demonstrate its powerful possibilities through specific code examples. 1. Golang’s advantages in game development. As a statically typed language, Golang is used in building large-scale game systems.

See all articles