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 the use of sessionstate tag in the web.config file?

2 Answers  


How to do Forms authentication in asp.net?

2 Answers  


Difference between Response.Expires and Expires.Absolute ?

1 Answers   Accenture, BirlaSoft,


What is Stateless ASP or ASP.Net?

2 Answers   Accenture,


Master Page

1 Answers   Syntel,






How to create events for a control?

0 Answers  


What are the various session state management options provided by asp.net?

0 Answers  


how can i am search the data from database? just like google

2 Answers  


which is better arraylist or dictionary?

2 Answers  


What is the function of the CustomValidator? a) It allows for custom C# client-side code to validate entries in a control. b) It allows for a custom mixture of validator controls to use one central control for the display of messages. c) It uses scripted client-side code to validate the entry in a control. d) It uses server-side code to validate the entry in a control.

4 Answers   ABC, Syntax Softtech, TCS,


Explain about Application and Session Events ?

0 Answers  


Asp.net - How to find last error which occurred?

1 Answers   Abacus,


Categories