I currently maintain a database of links and programming tips with a VB program I wrote. I keep the main database at my office and merge in data I build at other locations.
I decided to try to learn JSP and Servlets so I am in the process of creating applications to maintain my database via the web so I no longer have to merge data, I can just update via the web whenever I want.
So far, so good. The new Java programs update, delete, and add records to my database. The problem is I store links as
<A HREF="thisisalink.html">clickme</A>
in the database field, if I go to update that record via the web, I don't see the actual HTML code, I see a link waiting to be clicked.
How can I get the JSP to display the actual HTML code, not render it? My searching has only revealed deprecated HTML tags.
I suppose if I have to I could create an additional field and start storing the web address and the description in separate fields and build the href code as I write out the webpage that will display the links. Of course I would have to write an app to break out all my current links into the new fields.
T. Bishop
I decided to try to learn JSP and Servlets so I am in the process of creating applications to maintain my database via the web so I no longer have to merge data, I can just update via the web whenever I want.
So far, so good. The new Java programs update, delete, and add records to my database. The problem is I store links as
<A HREF="thisisalink.html">clickme</A>
in the database field, if I go to update that record via the web, I don't see the actual HTML code, I see a link waiting to be clicked.
How can I get the JSP to display the actual HTML code, not render it? My searching has only revealed deprecated HTML tags.
I suppose if I have to I could create an additional field and start storing the web address and the description in separate fields and build the href code as I write out the webpage that will display the links. Of course I would have to write an app to break out all my current links into the new fields.
T. Bishop