We know that IE is a web browser launched by Microsoft. In fact, the reason why the MS's operating system is called Windows, the reason is that his desktop itself is a browser, just not an internet. Speaking here, I have to say IE. If you open the help of IE, you will see that IE is actually the technology of NCSA Mosaic purchased by MS. That is, IE is MS-made housing. The kernel technology is completely purchased. So why can't I run Applet inside? This is also to talk to the browser running mechanism ... we all know that the most basic foundation of the browser is nothing more than our html language we often see, and says:
blog Manage Title> head> These are some of the source files for the HTML language of the current page. So, Applet will generate an HTML source file at the same time, you can see (if compiling) will be in the directory. Then this applet is embedded in the browser, and the browser can only explain the execution of this HTML file. Then when you encounter the link at the location where the applet is located, the applet is called. However, according to the Java platform independence, the execution of this small program should be to explain the binary code program compiled by the programmer. So, this time is the key to the problem. Who explains this binary code? For IE browsers who only know HTML, it will not be executed because they don't know. It's that simple. So, you may ask, isn't there a script? Why can the script execute? This is because IE will recognize a certain TAG for non-HTML language, and call the corresponding program to participate in page generation. Then the Java applet is a PLUGIN that can be called by IE. This makes the IE of the client running must have a plugin. However, sometimes we said that our client IE did not install the plugin, and some Java applets can still be used. In fact, this is also very simple, its operation, can not be separated from the corresponding executive, that is, before execution, there is already an explanation program for a Java applet to download and press to your background. There is not your attention. If you install some software, it may pop up the prompt, just like 3721 hate plugin. Otherwise, when he is automatically downloaded and executed, you think that you can perform these programs without any external programs. So, in addition to the applet, this principle is adopted by the scripting of the C #. As for Netscape, his core contains many programs that can easily perform online applets.