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 difference Between Authentication and authorization?
How can we prepairing Interview
What parameters can you pass in the url of the api?
Web API uses which library for JSON serialization?
What is the compiled object?
How to you can limit Access to Web API to Specific HTTP Verb?
How many types of sessions are there in asp net?
What are demand-paging and pre-paging?
What is a proxy in web service?
What is custom events? How to create it?
Describe the .net base class library.
Explain login controls.
What is a viewbag?
Can you use Web API with ASP.NET Web Form?
How can you implement the postback property of an asp.net control?