Best practices for processing input HTML content at server side in java -
I would like to apply content management system with RDBMS in java / j2ee, and would like to know the best practice to handle input HTML Content
There are some doubts given below, I'm sure there are many things to be careful about.
- Do we need to avoid HTML tags and specials The first letter is saving the HTML content from the database
- We have large input HTML How to validate / delete invalid special symbols in content
- Best practices for displaying HTML content from the database back in the browser
HTML in HTML Use a tool to clean up, then to parse it using any XML parser.
Comments
Post a Comment