home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / webobjects / resources / PartialLinkAndTarget.README < prev    next >
Encoding:
Text File  |  1996-08-23  |  605 b   |  16 lines

  1. PartialLink and PartialTarget
  2.  
  3. This components are used for anchor tags in pages. If you try to put <A NAME="someTag"> and then go to that tag with <A HREF="#someTag"> it won't work, because WO tries to complete the HREF value of the anchor, making it useless.
  4. (It doesn't complete the anchor well).
  5.  
  6. Instead, you can do this:
  7.  
  8. <WEBOBJECT NAME="MyTag"></WEBOBJECT>
  9.  
  10. MyTag: PartialLink {
  11.   userLabel = "This is the string that appears in the page";
  12.   userRef = "#someTag";
  13. };
  14.  
  15. This works for tags in the same page, but I haven't tested it for tags in different pages (I don't think it will work that way).
  16.