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
What is virtual directory in asp.net?
What is an asp.net web form?
Explain in what order a destructors is called.
Can you explain the importance of finalize method in .net?
Do I need to have the latest version of windows media player installed?
What is the function used for removing an event listener?
Explain authorization levels in .net ?
How u refer webservices?
What are the Difference between asp.net and asp ?
How to do state management in ASP.NET?
What threading model used in asp and asp.net?
Which protocol is used to call a web service?
Define viewstate in .net?
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
What are session cookies?