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
Define web services in asp.net.
What are triggers of an updatepanel?
When we use cookie less session? Explain its working?
List the events in page life cycle.
What is asp.net version?
What is a postback ispostback and autopostback in asp net?
What are the cookies types in asp.net?
Write the different features of a Thread and a Process?
What is asp.net futures?
What are the different validators in asp.net?
Explain the asp.net page life cycle.
What are session cookies?
What is the difference between mvc and asp.net? : Asp.Net MVC
What parameters can you pass in the url of the api? Can get and post use the same url?
How many types of Cookies are available in ASP.NET?