RE: General HTML/jsp question, any one

2002-09-04 Thread Rui Fernandes
PROTECTED]> Sent: Wednesday, September 04, 2002 7:43 PM Subject: Re: General HTML/jsp question, any one > To convert the string to xml compliant string, you could use a custom tag to > convert " to ", < to <, et c. > > instead of having an input tag, you could have a c

Re: General HTML/jsp question, any one

2002-09-04 Thread garrett smith
To convert the string to xml compliant string, you could use a custom tag to convert " to ", < to <, et c. instead of having an input tag, you could have a custom tag such as filtered-input. This custom tag would replace " with " You could try to use single-quotes for attributes, but that will

General HTML/jsp question, any one

2002-09-03 Thread Dinesh Khetarpal
I have an html page generated dynamically by jsp, this page has input field and value=A string which has " in it. I should generate the page converting " to " but I don't and html assumes string ends early. Do you know a method to overcome this or utilities which will convert the string to xml com