Click here to Skip to main content
15,891,033 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: Invalid Characters with MSXML Pin
Insert Cool Screen Name Here25-Jan-05 10:45
Insert Cool Screen Name Here25-Jan-05 10:45 
GeneralRe: Invalid Characters with MSXML Pin
DavidNohejl25-Jan-05 11:24
DavidNohejl25-Jan-05 11:24 
GeneralSimple Reports/ RTF output Pin
david@mindplay.com25-Jan-05 6:57
david@mindplay.com25-Jan-05 6:57 
GeneralRe: Simple Reports/ RTF output Pin
Mike Ellison25-Jan-05 8:27
Mike Ellison25-Jan-05 8:27 
GeneralRe: Simple Reports/ RTF output Pin
david@mindplay.com25-Jan-05 9:01
david@mindplay.com25-Jan-05 9:01 
GeneralRe: Simple Reports/ RTF output Pin
DavidNohejl25-Jan-05 10:13
DavidNohejl25-Jan-05 10:13 
GeneralRe: Simple Reports/ RTF output Pin
david@mindplay.com25-Jan-05 10:37
david@mindplay.com25-Jan-05 10:37 
GeneralRe: Simple Reports/ RTF output Pin
DavidNohejl25-Jan-05 11:21
DavidNohejl25-Jan-05 11:21 
hi again
if you need one file, you can use inline CSS. CSS if for formatting HTML, you can write (generate with XSLT) it inside your html file.
Example:
(bold part is inline CSS)

HTML Source:
<code>
<h1 style="color:red">HTML heading 1, coloured to red using css</h1>
</code>

result:

HTML heading 1, coloured to red using css



Got the idea?

much cleaner way is to have css classes (you can define them in external .css file, bt you can do it in style element):

<style>
.red {color:red}
</style>
Use is similar:
<h1 class="red"></h1>
(it gives exctly same result as first example - benfit is that you can reuse defined class many times, and also that CSS effects may overlap - that's why they call it Cascading Style Sheet)

Hope I gave you some ideas. This is only tip of the iceberg! :->

one more note - with css you can nicely control printing

David

Never forget: "Stay kul and happy" (I.A.)
GeneralRe: Simple Reports/ RTF output Pin
david@mindplay.com25-Jan-05 11:26
david@mindplay.com25-Jan-05 11:26 
QuestionHow to load data from XML String to tables Pin
Cuu24-Jan-05 6:00
Cuu24-Jan-05 6:00 
GeneralWSE 2.0 security... Pin
Jason Weibel21-Jan-05 10:56
Jason Weibel21-Jan-05 10:56 
Generalxml treeview using dataset Pin
ashushere21-Jan-05 8:17
ashushere21-Jan-05 8:17 
GeneralRe: xml treeview using dataset Pin
DavidNohejl21-Jan-05 12:19
DavidNohejl21-Jan-05 12:19 
GeneralWSE 2.0 - UsernameToken Pin
Jason Weibel20-Jan-05 9:22
Jason Weibel20-Jan-05 9:22 
GeneralRe: WSE 2.0 - UsernameToken Pin
Jason Weibel21-Jan-05 10:02
Jason Weibel21-Jan-05 10:02 
GeneralScheme or no scheme I can not use XmlDocument.LoadXML Pin
Anonymous20-Jan-05 4:11
Anonymous20-Jan-05 4:11 
GeneralRe: Scheme or no scheme I can not use XmlDocument.LoadXML Pin
DavidNohejl20-Jan-05 4:36
DavidNohejl20-Jan-05 4:36 
GeneralRe: Scheme or no scheme I can not use XmlDocument.LoadXML Pin
mcgahanfl20-Jan-05 10:20
mcgahanfl20-Jan-05 10:20 
GeneralHelp please !! transform returns unprintable chars Pin
atmeyer119-Jan-05 11:14
atmeyer119-Jan-05 11:14 
GeneralRe: Help please !! transform returns unprintable chars Pin
DavidNohejl19-Jan-05 12:26
DavidNohejl19-Jan-05 12:26 
GeneralRe: Help please !! transform returns unprintable chars Pin
atmeyer119-Jan-05 12:38
atmeyer119-Jan-05 12:38 
GeneralSchema Validation Pin
cobyjone19-Jan-05 9:45
cobyjone19-Jan-05 9:45 
GeneralRe: Schema Validation Pin
DavidNohejl19-Jan-05 10:06
DavidNohejl19-Jan-05 10:06 
GeneralRe: Schema Validation Pin
cobyjone19-Jan-05 10:16
cobyjone19-Jan-05 10:16 
GeneralRe: Schema Validation Pin
cobyjone19-Jan-05 10:30
cobyjone19-Jan-05 10:30 

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.