Store JS variables inside a Database?
Hi,
we have a list of names, generated by parsing an array JS source file.
The site and the main page is ASP, linked to a Database.
Is there a way to store the JS-generated text, inside the Database?
To be more clear:
Code:
<!-- excerpt from mypage.asp -->
<script type="text/javascript">
// VariableNames are an array result, but here we list a simple example:
document.write("<p>"+Name1+"</p>");
document.write("<p>"+Name2+"</p>");
// ...and so on, we need to store "NameX" variables inside our DB!
</script>