Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
hi all,i have created asp.net application using master page,in my master page contentpage i ll open a popwindow and i need to select some values from popwindow and send back the values to my master page content page,how to do this in javascript ?

this is my code,but its not working
JavaScript
<script type="text/javascript" >
     function passvalue()
     {

         window.opener.document.getElementById('<%=txt_quatno.ClientID%>').value = "my value";
         self.close();
     }
 </script>
Posted
Updated 20-Nov-12 1:54am
v2
Comments
ZurdoDev 20-Nov-12 7:54am    
What happens when you debug it?
sameertm 20-Nov-12 8:08am    
nothing happening mr.:( :(

1 solution

control in client side have static id such as :
[ContentPlaceHolder name]_[client name]

use static text in your JS code
may be this
C#
<script type="text/javascript" >
        function passvalue()
        {
 
            window.opener.document.getElementById('MainContent_txt_quatno').value = "my value";
            self.close();
        }
    </script>
 
Share this answer
 
Comments
sameertm 20-Nov-12 8:49am    
thnks dude its awesome :) :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900