*RESOLVED* - Passing a Variable within URL Problem???
I have been successful with passing a variable from one JSP to another until I ran into a wall....
I have a basic javascript function that will popup a window from a link...here is the function:
Code:
<script type="text/javascript">
<!--
function myPopup2() {
window.open( "http://het7/hdpi/callmon_edit_srch_inum.jsp?Cname='+request.getParameter('Cname')+'", "myWindow",
"status = 0, height = 200, width = 500, left = 200, top = 300, resizable = 0, location = 1" )
}
//-->
</script>
As you can see, I am attempting to pass a variable through the URL that opens the popup window...
But all it does is repeat the "request.getParameter" statment within the URL...
Does anyone know how I can accomplish this???
Thank you.