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

Distinguish between Server-side and Client-side code with its functionality?

0 Answers   Siebel,


How do you create a permanent cookie?

2 Answers  


What is difference between session and viewstate?

0 Answers  


Why web api is better than wcf?

0 Answers  


Define an assembly?

9 Answers   Siebel,






What is the difference between WindowsDefaultLocation and WindowsDefaultBounds?

0 Answers   BirlaSoft,


What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?

8 Answers   Siebel Systems,


What is a 404 redirect?

0 Answers  


Is it necessary to undertsand these events of an ASPX page execute. Explain its importantance?

2 Answers   HCL, Siebel,


What is repository pattern in mvc.net? : asp.net mvc

0 Answers  


what is differences between bind and eval?

2 Answers  


What data types do the RangeValidator control support?

2 Answers  


Categories