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

What is difference between Fragment Caching and Page Caching in ASP.NET?

580


Explain how is the asp.net mvc architecture different from others? : asp.net mvc

508


What are the new data controls in asp.net 2.0?

526


How do I know asp.net mvc version? : Asp.Net MVC

505


What are the types of caching in asp.net?

555






How do session tokens work?

515


What is difference between asp state management and asp.net state management? How can we pass info between 2 asp.net pages?

498


What is the difference between session and application?

506


What are the namespaces used in asp.net mvc? : asp.net mvc

518


What's the difference between viewstate and sessionstate?

570


What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC

502


What are session state modes in asp.net?

554


What is a multilingual website?

565


When was asp.net released?

574


What is route in web api?

535