Internal strength measures a person's martial arts cultivation, and Xiaoyao Sect's Beiming Magic Skill is really a treasure. People who practice this technique have their whole body like a black hole, and they can instantly rob others of their lifetime's practice. They are known as "Beiming Great Skill". "Water does not come from itself" and "all rivers merge into the sea, and the sea accepts all rivers".
But Xu Zhu didn't know that learning this technique required dissipating his original skills, so when he was completely transformed into an empty monk by Wu Yazi, he couldn't help crying loudly. In fact, this move is absolutely understandable. For a martial arts practitioner, internal strength symbolizes accumulation. Although Xu Zhu is a bit stupid, the accumulation of more than 20 years is gone in an instant, which is tantamount to the destruction of the spiritual world.
■ The impact of computing - process-oriented programming thinking
The ancestor of ASP programmers is named von Neumann, and ASP programmers have always lived according to his sincere teachings. ASP programmers have always believed that everything in this world is like a person's life, with a starting point called START and an end point called END. The things he has to deal with are just like in this life, from START to END, there is no turning back.
ASP programmers also believe that everything in this world is like a person's life, divided into different stages, called modules. Each module has to complete a different task: a young man studies, a young man gives birth to a child, a middle-aged man establishes his destiny, and an old man does not have doubts.
ASP programmers also believe that everything in this world is like a person's life, and there are only three ways to move forward: sometimes you stride forward, which is called sequence; sometimes you face choices, which is called branching; sometimes you go around in circles, lingering, which is called branching. cycle.
ASP programmers have always had the motto of "You can't reach a thousand miles without taking small steps", so he accumulates all similar things and remembers them as functions. When encountering the same type of things in the future, he will call the function.
ASP programmers call this way of living "facing procedural programming ideas". What they usually care about most is the model of the process. What they pay most attention to is whether these processes have similar processing processes that can be summarized into functions.
Even when faced with such a small matter as website login, ASP programmers still follow their own beliefs and model the process first, as shown in Figure 4-1, and then call all the previously accumulated functions to carefully weave every step of the process. One link: Doesn’t the user need to submit login data? He used the response.write brush to describe the user-filled page one by one in order; didn't he need to verify the format? He calls JavaScript functions to check the value of each <input> one by one; isn't it necessary to audit the data? After reading the user data, he opened the thick accounts and checked them one by one; didn't he want the results? He either takes the user to jump to a specified page, or calls a function to tell the user not to act like a fool.
private void btnLogin_Click(object sender, System.EventArgs e) { if ((txtUserName.Text=="Sun Erniang")&&(txtPassword.Text=="Cross Slope")) lblMessage.Text="Warmly welcome the world-famous martial arts superstar Miss Sun Erniang to return to her hometown to investigate investment"; else lblMessage.Text="Damn, everything is fake these days!"; } |
<%@ Page Inherits="WebApplication1.Login" %> |