Kbase 21315: Webspeed Examples of Embedded Weblinks
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  12/9/2008 |
|
Status: Verified
GOAL:
Does webspeed allow for anchor tags and can they be combined within speedscript?
FIX:
The Anchor tag is the most powerful and useful command in HTML. It allows users to navigate through your website as well as communicate with other applications available on the client machine. All forms of the anchor tag are allowed in the WebSpeed environment. As demonstrated in the sample code below, by combining the anchor tag with SpeedScript, one can dynamically create links to offer a wide variety of functionality.
The principle revolves around the Anchor Tag, which looks like this:
<a href="http://www.webaddress.com"> Identifier </a>
The information between the quotes gives the address to go to when it is clicked. The identifier is the word or string that will appear as the underlined link seen on the HTML page. These links can be used to run separate web pages, as in the example above, or the links can even redirect users to specific information within the current page or another page.