Is there any way to....

admin

Administrator
Staff member
Okay,

I have the following script on a page.


<script language="Javascript">
<!--

document.writeln(" Name: " + Name +"<br>");
document.writeln(" Is number " + Number);

-->
</script>

Okay, that works well enough, but only if I have the actual variable on the page.

Yet to keep a sense of order on my page, I wanted to have a seperate list of .jsp files that could contain the variables for Name and Number, where I could then just upload them using some kind of an if/then statement.

Although, when I try this, the information never loads into the page with the above script. SO.. I was wondering if it is even possible to transfer variable via a .jsp file into another script.

If any help is possible, Thanks.
 
Back
Top