??? Use a text editor?
Run a program which inserts bytes into a specific position in the file.
What have you to work with? Java, C3, PHP, Perl?
When you say position, are you referring to a...
Judging by the URL links, you're probably not passing in the parameter correctly. I would pass it as something like:
iter3-propertyDetail-res.php?propertyId=234242
The browser that you're using probably treats the output as HTML by default.
You'd still need to put the html and various elements in, if you're not doing so, (eg if you haven't trimmed the xslt...
Templates are rule sets generated for the processing of each node. First the document node of the xml doc is processed. This corresponds to:
<xsl:template match="/">
Create a new parent node.
Add the new child node in.
Add the old children in. (You may have to clone nodes).
Do a replaceNode: oldparent with newparent.
The steps would probably be something like:
Try and find the longest comment. Search for the comment element with the longest text length. Multiply this length by some factor, and set the cell width...
What type of errors are in the xml? Is it well-formed, but not matching schema? Does you application have the ability to handle this large of an xml file?