Launching Hello World XML

When you launch the Hello World XML Web application, the hello.asp page runs. The cascading style sheet (Result.css) is linked and the English, German, and Japanese buttons appear in the browser. The following code fragment shows how Result.css is linked to hello.asp:

<LINK REL="stylesheet"  TYPE="text/css" HREF="Result.css" >

The text that appears when the onmouseover event for the German and Japanese buttons fires is Unicode encoded. You can identify Unicode encoding by the %u prefix for every character. The English text is not Unicode encoded. The showTitle function is assigned to the onmouseover event of the German and Japanese buttons as shown in the following code fragment. Using the showTitle Function describes the tasks this function performs.

<FORM NAME="frmLingo" METHOD="POST" ACTION="<%= Request.ServerVariables("SCRIPT_NAME") %>">
<TABLE  WIDTH=100%>
<TR HEIGHT=10%></TR>
<TR><TD WIDTH=30%></TD><TD>
<FIELDSET STYLE="WIDTH:40%">
<LEGEND>Choose language</LEGEND>
  <TABLE WIDTH=100%>
   <TR><TD><INPUT  TYPE="SUBMIT" NAME="BTN"   VALUE="ENGLISH"  TITLE="Click here for 'Hello World' in English." > </TD>
   <TD><INPUT TYPE="SUBMIT"  NAME="BTN"       VALUE="GERMAN"  onmouseover="showTitle('%u004b%u006c%u0069%u0063%u006b%u0065%u006e%u0020%u0053%u0069%u0065%u0020%u0068%u0069%u0065%u0072%u0020%u0066%u00fc%u0072%u0020%u0027%u0048%u0065%u006c%u006c%u006f%u0020%u0057%u006f%u0072%u006c%u0064%u0027%u0020%u0061%u0075%u0066%u0020%u0044%u0065%u0075%u0074%u0073%u0063%u0068%u002e')" onmouseout="hideTitle()"></TD>
   <TD><INPUT TYPE="SUBMIT" NAME="BTN"       VALUE="JAPANESE" onmouseover="showTitle('%u30af%u30ea%u30c3%u30af%u3059%u308b%u3068%u65e5%u672c%u8a9e%u3067%U0020%U300c%U0048%U0065%U006c%U006c%U006f%U0020%U0057%U006f%U0072%U006c%U0064%U300d%U0020%u3092%u8868%u793a%u3057%u307e%u3059')" onmouseout="hideTitle()"></TD>
   </TR>
  </TABLE>
</FIELDSET>
</TD></TR>
</TABLE>
</FORM>