"If at first you don't succeed; call it version 1.0" :-Unknown

Pages

Showing posts with label XML. Show all posts
Showing posts with label XML. Show all posts

Sunday, November 20, 2011

Exporting an sql table to XML

Hi *.*,
To export data first it should be hold in a Dataset or Datatable or else where we can loop(Here i used a dataset).

Wednesday, July 6, 2011

XML Character Entities

XML pays special attention to a few specific characters, such as & and < and >...
On XAML 
<Button ... >
<Click Me>
</Button>. 
This would not work,The solution is to replace the offending characters with entity
references—specific codes that the XAML parser will interpret correctly

Here’s the corrected markup that uses the appropriate character entities:
<Button ... >
&lt;Click Me&gt;
</Button>

Special Character
Character Entity
Less than ( < )
&lt;
Greater than ( > )
&gt;
Ampersand ( & )
&amp;
Quotation Mark ( “ )
&quot;





Have a nice day... 'N happy Coding :)