With the enhanced knowledge about form in the previous html, are you thinking that you can start your ASP journey below? not necessarily.
Generally, programmers who have learned ASP in systems will personally realize that it is always crucial to learn scripting language before learning ASP’s built-in objects and built-in components in systems.
Why do you say so? Why learn scripting language? What is the relationship between ASP and scripting language?
First, let’s talk about what ASP is precious. ASP is the short for Microsoft Active Server Pages, a server-side scripting environment that can be used to create interactive web pages and build powerful web applications. It can be shown that ASP is a server-side scripting environment, so we understand why ASP needs IIS support, because IIS is a commonly used web server; then we understand why we need to learn scripting languages, because ASP provides a scripting environment.
Again, ASP is just an environment, not a language. If you really want to say that ASP is a network programming language in a visual way, it is also a powerful hybrid language with built-in objects and components provided by html+script+asp.
Therefore, it is very important to learn some scripts! In fact, whether you are learning script languages or other languages, I think the first thing you need to understand is the various characteristics covered by the language, including: data types, events, methods, objects, attributes, grammar, etc. Of course, these are all empty talk. Just like a computer language class in a university class, what you do is purely research is a bit boring. It is better to be more practical. A program that can solve problems is a good program (certify that a cat that can catch a mouse is a classic holy saying of a good cat, haha)
Of course, you still need to study language. For example, if you write a program that finds absolute values, you can actually do it with an abs() function. For example, you know how to use vb scripts, but replacing the same program with Java scripts will make an error. Their data types are different and the statement syntax is also different. Just like Chinese and foreign languages, you need to know the pronunciation symbols (data type), how to pronounce (method), how to say it in one sentence (grammar)... Haha, it makes you feel a little uncomfortable. OK! Direct. What you need to pay attention to in the future is the functions and syntax of the language. Of course, it is not for you to read it all. Follow the encounters in the tutorial to master the other ones. After finishing the tutorial, it is almost over. Haha, you have to believe me.
There are currently two main scripting languages: VbScript and JavaScript. Because VbScript is the default server script for IIS, what we are talking about is basically ASP based on VbScript as scripts. Of course, it is not ruled out that JavaScript is sometimes used.
Let's give a very simple example: