|
Question : XML Parsing Error: undefined entity
|
|
Hello Experts,
Is there a way to solv the following problem, I am reading data from my database to a recordset and converting the recordsert to XML, using the folowing technique;-
http://authors.aspalliance.com/brettb/WebJobMarket.asp
However, I am getting the following error:-
XML Parsing Error: undefined entity Location: http://www.kombat.no/byz_kelkoofeed.asp Line Number 36, Column 39:GrĂ½nn - Treetop.</SPAN>
The error is caused by the ..
Is there anyway that I can work around this error, i'm fairly new to xml.. Thank you
|
|
Answer : XML Parsing Error: undefined entity
|
|
  is a Space, I believe ... you can use the Replace function to convert every instance of   to space:
Replace("YourStringIn", " ", " ")
|
|
|
|