You need a HTML 3.0 compliant browser to view this page

</NOFRAMES>

With frames you can tell a certain link to appear in another frame, in another window, into a new blank window that is the same screen that the other frame was in, into itself, or into its parent frame (the frame above it in the frame set if there is nothing above it the link will just appear in the same frame). In order to get the link to appear in another frame you first need to name the other frame. Then you would enter a modifier in the A HREF command this modifier is the word TARGET then an equal sign “=” then the name of the frame. The source code for a link in a frame that is targeted into another frame called Main would look like this:

 

<A HREF=”temp.html” TARGET=”Main”>Temporary</A>

 

If you wanted the link to appear in a completely new window then you would enter a “magic” command after the equal sign “=” in the TARGET modifier, this command is an underscore “_” followed by the word blank. The final source for a link in a frame that opens a new window would look like this:

 

<A HREF=”temp.html” TARGET=”_BLANK”>Temporary</A>

 

If you wanted the link to appear in a new blank screen but not a new window then you would enter another magic modifier. This modifier is an underscore “_” followed by the word TOP. The final source code would look like this:

 

<A HREF=”temp.html” TARGET=”_TOP”>Temporary</A>

 

If you wanted the link to appear in the same frame that it is in you would use another magic modifier. This modifier is an underscore “_” followed by the word SELF. The final source code would look like this:

 

<A HREF=”temp.html” TARGET=”_SELF”>Temporary</A>

 

If you wanted the link to appear in the parent frame in it’s frame set you would use another magic modifier. This modifier is a underscore “_” followed be the word PARENT. The final source code would look like this:

 

<A HREF=”temp.html” TARGET=”_PARENT”>Temporary</A>

 

If you want all the links in a certain frame to be going to the same frame or magic link then you would enter, at the beginning of the document just after the body command or if you want before the first link, an angle bracket “<“ followed by the word BASE followed by the word TARGET followed by an equal sign followed by the name for the frame or the magic modifier followed by an angle bracket “>”. (Any base target can be overridden by the targets in the A HREF command.) The final source code for this base targeted to a frame named main would look like this:

 

<BASE TARGET=”Main”>

 

The same modifiers can be used in the IMAGE MAP command.

The Java (applet) Command

The next command that we will discuss is the command used to put a java applet on your page. Java is an object oriented programing language developed by Sun Microsystems. Java allows, theoretically, any program that can be used on a normal computer to be used over the internet. But since programs for a computer are quite large and if they were going to run over the internet they would eventually have to be downloaded, and this has not been done in great scale. However, there are a wide variety of applets that do anything from text manipulation to help you write other applets on the internet. Most of the authors of these applets let you have the source code. This will allow you to put that same applet on your page and most likely personalize it to do want you want it to do without having to learn the Java language.

In order to put a java applet on your page you must first make one, or find one on the internet. After you have done this you must enter the commands needed to run the applet on your web page. If you find an applet on the internet the author will most likely have a documentation that comes with the applet telling you how to put it on your page. I will tell you how to put a basic applet on you page. The first command that you will need to enter is an angle bracket “<“ followed by the word APPLET followed by modifiers followed by an angle bracket “>”. The modifiers that appear in the APPLET command are normally CODEBASE followed by an equal sign “=”. This modifier tells the browser what directory all the .class’s are in. The next modifier is usually CODE followed by an equal sign “=”. This modifier tells the browser which is the main .class that should be executed for this applet. WIDTH or/and HEIGHT followed by an equal sign “=” sometimes are included. This width and height works exactly like the one in the IMG SRC command. Another modifier that you can choose to include is ALIGN followed by an equal sign “=”. This lets you ALIGN the applet in the center, to the right, or to the left. Next comes a list of parameters that will be inserted run with the .class. These parameters are dependent on what the Java applet does. Parameters are recognized by an angle bracket “<“ followed by the words PARAM NAME followed by an equal sign “=” followed by the name of the command followed by the word VALUE followed by an equal sign “=” followed by where that parameter is located and ended by an angle bracket “>”. These parameters will either be given to you in the instructions on how to install the applet on your page or, if you wrote the applet, you should know them. Then the applet is ended with an angle bracket “<“ followed by a slash “/” followed by the word APPLET followed by an angle bracket “>”. The final source code for using an applet that I found on the internet called LED sign would look like this:

 

<applet codebase="/LED/Led" code="LED.class" width=500 height=48 align=center>

<param name="script" value="/LED/scripts/Demo.led">

<param name="border" value="2">

<param name="bordercolor" value="100,130,130">

<param name="spacewidth" value="3">

<param name="wth" value="122">

<param name="font" value="/LED/fonts/default.font">

<param name="ledsize" value="3">

</applet>

 

But what if the person that is visiting your page does not have a browser that supports java? What will they see? Well if you leave the applet as shown they will see nothing but you can enter an alternative that the person will see. In order to do this, after you have decide what you want the person without java to see, you go to the document source and insert the HTML code of what you want the person to see after the last parameter and before the ending applet. This is very convenient if you want to put an ad for a browser that supports java and you don’t want the people with java to have to look at/download an ad for something that they already have. The final source code for the above applet with the alternative about downloading netscape would look like this:

 

<applet codebase="/LED/Led" code="LED.class" width=500 height=48 align=center>

<param name="script" value="/LED/scripts/Demo.led">

<param name="border" value="2">

<param name="bordercolor" value="100,130,130">

<param name="spacewidth" value="3">

<param name="wth" value="122">

<param name="font" value="/LED/fonts/default.font">

<param name="ledsize" value="3">

To see this page at it’s best, download <A HREF=”http://home.netscape.com”>Netscape</A>.

</applet>

The Java (script) Command

The next command that we will discuss is the 11-36007.php"> ⇐ Назад

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 78
  •