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
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
What are the server control tags in asp.net.?
Explain client side state management system.
How to create events for a control?
Whats the difference between abstract factory pattern and factory pattern?
What describes a query?
How does asp.net work?
What is active web page?
What is the difference between mvc and asp.net? : Asp.Net MVC
Which method do you use to kill explicitly a users session?
Explain global assembly cache.
Explain what is postback in asp. Net?
Is viewstate secure?
How to create discussion forum in asp.net mvc? : Asp.Net MVC
Explain in what order a destructors is called.