when u enter the data in one text box once u completed
entering the text box data then one page has to be popuped
and the text has to be displayed in the parent page

Answer Posted / om shivaya namaha

By using Onblur property we can do that one
onblur event will fire when ever u ar moving from one
control to another control then this event will fire

in Serverside code:-
textbox1.attributes.add("onblur","fuPopuppage();")

in AspPage :-

<script type ="text/javascript" language ="javascript" >
function fuPopuppage()
{

window.open('parentpage.aspx','parent','height=500;width=500');
}


</script>


in the parent page :-
severside code:-
label.text= window.opener.document.forms[0].textbox1.vale

onthe parent page the label message will be shown what ever
u enter in the chiled page

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the reason why the javascript validation not run on the asp.net button but run successfully on the html button?

570


i have 3+ exp in .net? i am going interview now but they asked me do you know any TOOL? which tool will i study please refer me?

1836


Explain the difference between the web config and machine config.

623


How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?

3402


What is the parent class of all the web server control?

483






Explain the difference between an exe and a dll?

526


Define page output caching?

572


benefits of migration from asp to asp.net hi frnds, i have to give presentation to a client about how useful would be migrating their project from asp to asp.net .plz give me some points which i should incorporate in my ppt thanks

1764


How does the cookies work in asp.net?

552


How can we add an event handler for a ASP.NET function executed on MouseOver for a certain button.

616


Explain the main differences between asp and asp.net?

514


What is the difference between session object and application object?

589


1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records one gridview and 5000 records another grid view what is the process?

1660


How many types of server controls do we have?Also explain differance between them taking an example of ASP.NET?

2364


Differentiate between Server.Transfer and Response.Redirect with functionality? Why we can choose one over the other?

608