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
Explain how cookies work.
How can we identify that the page is post back in asp net?
How to disable validator control by client side JavaScript?
What are session state modes in asp.net?
Are cookies client side or server side?
What can you do with asp.net?
What is the difference between sealed vs static class?
What is a page life cycle?
How would you implement inheritance using c#?
What is mta?
What is & in a url?
What does the hotspot class in .net do?
What are session state modes? List some of the important session state modes of asp.net.
What does postback mean?
Can I tap into other windows livetm services?