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).In this blog i'm posting some Asp.net,Sql Server,Jquery,HTML-5,sqlite,C#,JavaScript scripts and sample codes that i found and created by me or my friends with a mind that it Save/ Help our ass some ways...
Showing posts with label XML. Show all posts
Showing posts with label XML. Show all posts
Sunday, November 20, 2011
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>.
<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
references—specific codes that the XAML parser will interpret correctly
Here’s the corrected markup that uses the appropriate character entities:
<Button ... >
<Click Me>
</Button>
<Button ... >
<Click Me>
</Button>
Special Character | Character Entity |
Less than ( < ) | < |
Greater than ( > ) | > |
Ampersand ( & ) | & |
Quotation Mark ( “ ) | " |
Have a nice day... 'N happy Coding :)
Subscribe to:
Posts (Atom)