I wonder if anyone can assist me with an issue I'm having?
I'm sort of new to the world of javascript, I have a page that pulls a list of records in asp, and I'm trying to past the varibles, and have them display a gallery of images.
Now I have no problem getting the QueryString passed onto the second page, and also have a piece of javascript read the QueryString, what I can't seem to do, is get onLoad to read the QueryString. Please find the code listed below;
<script type="text/JavaScript">
var Suffix
var Images
Suffix = "<%=Request.QueryString("Suffix")%>";
Images = "<%=Request.QueryString("Images")%>";
onLoad = "gallery('Suffix', 'Images');"
</script>
Can anyone point me in the right direction...
I'm sort of new to the world of javascript, I have a page that pulls a list of records in asp, and I'm trying to past the varibles, and have them display a gallery of images.
Now I have no problem getting the QueryString passed onto the second page, and also have a piece of javascript read the QueryString, what I can't seem to do, is get onLoad to read the QueryString. Please find the code listed below;
<script type="text/JavaScript">
var Suffix
var Images
Suffix = "<%=Request.QueryString("Suffix")%>";
Images = "<%=Request.QueryString("Images")%>";
onLoad = "gallery('Suffix', 'Images');"
</script>
Can anyone point me in the right direction...