GeekArticles
Java
JSPCreating Richer Hyperlinks with JSP Custom Tags
Author: oreillynet.com |
Published: 10th Aug 2005 |
Visited: 322 times |
Add CommentFiled in: JSPby Amit Goel 04/30/2003 The linking mechanism currently supported by HTML ( <a href="destination.html"> ) allows us to create hyperlinks that can have only one destination. To add context-related destinations to a hyperlink, we either need to supply them as links within parentheses (e.g., "download PDF version," "download Word version," etc.), or make the reader scroll to a different part of the page (e.g., a "Resources" section), sometimes causing the reader to lose context. If we...n
Read Article Sponsored Links
Related Articles
• Building a Visual Studio DebuggerVisualizer with a Custom Serializer For most any Serializeable object, making a DebuggerVisualizer is exceeding simple and examples abound. However, if you are trying to build a DebuggerVisualizer for an object which is not Serializable or takes too long to Serialize and Deserialize, things are not quite so simp ...