Click here to Skip to main content
15,908,264 members
Home / Discussions / C#
   

C#

 
AnswerRe: hide printers visible in PrintDialog Pin
Dave Kreskowiak17-Dec-05 8:24
mveDave Kreskowiak17-Dec-05 8:24 
Questionfirst frame of video Pin
munmat16-Dec-05 11:13
munmat16-Dec-05 11:13 
QuestionEscape sequence in xml output? Pin
pankazmittal16-Dec-05 11:01
pankazmittal16-Dec-05 11:01 
AnswerRe: Escape sequence in xml output? Pin
Nish Nishant16-Dec-05 11:13
sitebuilderNish Nishant16-Dec-05 11:13 
GeneralRe: Escape sequence in xml output? Pin
pankazmittal16-Dec-05 11:18
pankazmittal16-Dec-05 11:18 
AnswerRe: Escape sequence in xml output? Pin
TheGreatAndPowerfulOz16-Dec-05 11:14
TheGreatAndPowerfulOz16-Dec-05 11:14 
AnswerRe: Escape sequence in xml output? Pin
Guffa16-Dec-05 11:22
Guffa16-Dec-05 11:22 
AnswerRe: Escape sequence in xml output? Pin
Curtis Schlak.16-Dec-05 11:29
Curtis Schlak.16-Dec-05 11:29 
If I understand you correctly, you have a table like the following:
<table>
  <tr>
    <td>
      Some table data.
    </td>
  </tr>
</table>
and when you put it in the XML document, you get:
<myXml>
  </tableData>
    &lt;table&gt;
      &lt;tr&gt;
        &lt;td&gt;
          Some table data.
        &lt;/td&gt;
      &lt;/tr&gt;
    &lt;/table&gt;
  </tableData>
</myXml>
If so, then when you dump it into the XML document, your code (intentionally or not) has replaced the predefined XML entities with their ENTITY counterparts. Five predefined entities exist:
  • > becomes &gt;
  • < becomes &lt;
  • " becomes &quot;
  • ' becomes &apos;
  • & becomes &amp;
Perhaps you can post how you put the table data into the XML document and we can help you avoid these automatic conversions.

"we must lose precision to make significant statements about complex systems."
-deKorvin on uncertainty
QuestionRe: Escape sequence in xml output? Pin
pankazmittal16-Dec-05 11:45
pankazmittal16-Dec-05 11:45 
AnswerRe: Escape sequence in xml output? Pin
Curtis Schlak.16-Dec-05 12:01
Curtis Schlak.16-Dec-05 12:01 
QuestionListView Color Pin
dbetting16-Dec-05 10:17
dbetting16-Dec-05 10:17 
AnswerRe: ListView Color Pin
Jared Parsons16-Dec-05 11:16
Jared Parsons16-Dec-05 11:16 
GeneralRe: ListView Color Pin
dbetting16-Dec-05 17:57
dbetting16-Dec-05 17:57 
Questiondatagrid cell issue Pin
melanieab16-Dec-05 10:05
melanieab16-Dec-05 10:05 
QuestionWindows Service Stops as soon as it starts Pin
xsoftdev216-Dec-05 9:37
xsoftdev216-Dec-05 9:37 
AnswerRe: Windows Service Stops as soon as it starts Pin
mav.northwind16-Dec-05 20:42
mav.northwind16-Dec-05 20:42 
QuestionCustom URL Handler Pin
notacake16-Dec-05 8:43
notacake16-Dec-05 8:43 
AnswerRe: Custom URL Handler Pin
Curtis Schlak.16-Dec-05 11:33
Curtis Schlak.16-Dec-05 11:33 
GeneralRe: Custom URL Handler Pin
notacake16-Dec-05 12:42
notacake16-Dec-05 12:42 
GeneralRe: Custom URL Handler Pin
Curtis Schlak.17-Dec-05 4:19
Curtis Schlak.17-Dec-05 4:19 
GeneralRe: Custom URL Handler Pin
notacake17-Dec-05 4:28
notacake17-Dec-05 4:28 
GeneralRe: Custom URL Handler Pin
Curtis Schlak.17-Dec-05 11:11
Curtis Schlak.17-Dec-05 11:11 
GeneralRe: Custom URL Handler Pin
notacake20-Dec-05 3:59
notacake20-Dec-05 3:59 
QuestionMorphing widgets: Form to Gradient Form Pin
zopiro16-Dec-05 8:37
zopiro16-Dec-05 8:37 
AnswerRe: Morphing widgets: Form to Gradient Form Pin
g00fyman16-Dec-05 15:31
g00fyman16-Dec-05 15:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.