HTML Code ClinicDo you have some HTML code you'd like to share and get suggestions from others for tweaking or improving it? This discussion is the place.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the HTML Code Clinic section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
For some reasons i have to represent a huge amount of data (String value)inside a html page. i tried setting the data as the value attribute of a hidden field but the problem is the data might some time contains '"' . also as my page action method is post each time i submit my form this value 'll also be transmitted to the server.
I also tried div
ie
<div style="visibility:hidden;border:0;height:0px;width :0px;">
{my data will be here}
</div>
but even though i had given height and width as -1 itz still occupying some space and causing some alignment problem which i do not want to happen
Can anybody suggest the best way of representing huge amount of data in a html page