Results 1 to 1 of 1

Thread: *RESOLVED* - Passing a Variable within URL Problem???

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Apr 2001
    Location
    New York
    Posts
    679

    *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.
    Last edited by Salvatore; Jan 19th, 2005 at 10:35 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width