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



when u enter the data in one text box once u completed entering the text box data then one page has..

Answer / 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

More ASP.NET Interview Questions

What is DataGrid wheater its a Server Control or something else ?

0 Answers   NA,


What is asp net objects?

0 Answers  


Define Query Interface,Adref,Release?

1 Answers   Microsoft,


Can you explain composite pattern?

0 Answers   QuestPond,


What is the concept of view state in asp.net?

0 Answers  






Whats the use of @ Register directives ?

4 Answers  


Which method do you invoke on the DataAdapter control to load your generated dataset with data?

2 Answers  


What are the session variables?

0 Answers  


what is a virtual class?

1 Answers   Patni,


How do you create a permanent cookie?

8 Answers   Siebel Systems,


How do you manage session in ASP and ASP.NET?

1 Answers   Microsoft,


What are session state modes? List some of the important session state modes of asp.net.

0 Answers  


Categories