Click here to Skip to main content
15,895,538 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: Xml namespace declaration Pin
led mike29-Sep-06 6:16
led mike29-Sep-06 6:16 
AnswerRe: Xml namespace declaration Pin
George L. Jackson29-Sep-06 7:48
George L. Jackson29-Sep-06 7:48 
AnswerRe: Xml namespace declaration Pin
led mike29-Sep-06 7:58
led mike29-Sep-06 7:58 
GeneralRe: Xml namespace declaration Pin
George L. Jackson29-Sep-06 9:02
George L. Jackson29-Sep-06 9:02 
QuestionReading DB Pin
NICE TO MEET29-Sep-06 1:24
NICE TO MEET29-Sep-06 1:24 
AnswerPlease do your own homework. Pin
leckey1-Oct-06 16:35
leckey1-Oct-06 16:35 
QuestionCan I display a message while the browser is loading XML file? Pin
oohungoo28-Sep-06 19:32
oohungoo28-Sep-06 19:32 
AnswerRe: Can I display a message while the browser is loading XML file? Pin
thedom228-Sep-06 20:06
thedom228-Sep-06 20:06 
I would use javascript to handle this task and is accpeted by all browsers
something like the below is easy to implement

============================================================
INSTRUCTIONS.

This is a MUTI-PART Script.

============================================================
PART I.
Copy code below into <HEAD> section of your HTML pages
============================================================

<SCRIPT TYPE="text/javascript" LANGUAGE="javascript">

<!-- PreLoad Wait - Script -->
<!-- This script and more from http://www.rainbow.arch.scriptmania.com

function waitPreloadPage() { //DOM
if (document.getElementById){
document.getElementById('prepage').style.visibility='hidden';
}else{
if (document.layers){ //NS4
document.prepage.visibility = 'hidden';
}
else { //IE4
document.all.prepage.style.visibility = 'hidden';
}
}
}
// End -->
</SCRIPT>


============================================================
PART II.
Add the onLoad event, as shown below, to your <BODY> tag:
============================================================

<BODY onLoad="waitPreloadPage();">


============================================================
PART III.
Copy codes below to immediately after <BODY> tag.
============================================================

<DIV id="prepage" style="position:absolute; font-family:arial; font-size:16; left:0px; top:0px; background-color:white; layer-background-color:white; height:100%; width:100%;">
<TABLE width=100%><TR><TD><B>Loading ... ... Please wait!</B></TD></TR></TABLE>
</DIV>


QuestionIs my XML FuBar ? Pin
thedom228-Sep-06 14:15
thedom228-Sep-06 14:15 
GeneralRe: Is my XML FuBar ? [modified] Pin
George L. Jackson28-Sep-06 15:27
George L. Jackson28-Sep-06 15:27 
GeneralRe: Is my XML FuBar ? Pin
thedom228-Sep-06 16:21
thedom228-Sep-06 16:21 
GeneralRe: Is my XML FuBar ? Pin
mnvkng7613-Oct-06 5:58
mnvkng7613-Oct-06 5:58 
QuestionHow to do attributes in schemas... Pin
gunner_uk200028-Sep-06 5:50
gunner_uk200028-Sep-06 5:50 
AnswerRe: How to do attributes in schemas... Pin
led mike28-Sep-06 6:31
led mike28-Sep-06 6:31 
QuestionDelete Nodes Pin
Raph127-Sep-06 8:41
Raph127-Sep-06 8:41 
AnswerRe: Delete Nodes Pin
led mike28-Sep-06 6:30
led mike28-Sep-06 6:30 
GeneralRe: Delete Nodes Pin
Raph128-Sep-06 7:46
Raph128-Sep-06 7:46 
GeneralRe: Delete Nodes Pin
led mike29-Sep-06 4:52
led mike29-Sep-06 4:52 
QuestionProblem about Transferring big file or string in WebService Pin
Bright Zhang26-Sep-06 23:03
Bright Zhang26-Sep-06 23:03 
GeneralRe: Problem about Transferring big file or string in WebService Pin
Bright Zhang29-Sep-06 20:34
Bright Zhang29-Sep-06 20:34 
QuestionVBScripting XML node, element creation and deletion Pin
JohnnyBoyWonder25-Sep-06 22:31
JohnnyBoyWonder25-Sep-06 22:31 
AnswerRe: VBScripting XML node, element creation and deletion Pin
led mike26-Sep-06 5:09
led mike26-Sep-06 5:09 
AnswerRe: VBScripting XML node, element creation and deletion Pin
led mike26-Sep-06 5:11
led mike26-Sep-06 5:11 
QuestionXSL Pin
Srinu_ss525-Sep-06 18:56
Srinu_ss525-Sep-06 18:56 
AnswerRe: XSL Pin
George L. Jackson26-Sep-06 15:09
George L. Jackson26-Sep-06 15:09 

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.