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



when u enter the data in one text box once u completed entering the text box data then one page has..

Answer / 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

More ASP.NET Interview Questions

What are navigation controls? How many navigation controls are there in ASP.NET 4.0?

0 Answers   UGC Corporation,


When is validation done on the client? How does client-side validation improve the efficiency of an application?

1 Answers  


How does SQL Server session state works

1 Answers   Emphasis,


Explain about secure socket layer?

0 Answers  


What are the advantages and disadvantages of Using Cookies?

0 Answers   MCN Solutions,






What is the main use of Response.Output.Write()?

4 Answers   Siebel,


How do I debug an asp.net application that was not written with visual studio.net and that does not use code-behind?

0 Answers  


I am having four text boxes in my web application. I am setting Required Field validator to each Text box. And I am having two buttons in my application. If i clicked the first button only first two text box validation will get fire. Dont show error message for remaining two text box. If i clicked second button last two text box validation will get fired. It will not consider the first two validation controls. That is how to enable and disable the validation controls.

4 Answers  


What is the basic difference between asp and asp.net?

0 Answers  


What are assemblies and namespaces and explain the difference between them ?

0 Answers  


When we are requesting a new URL through Response.Redirect() the new page wil open on the new browser window or it wil open in the same window? If we use Server.Transfer() what wil happen?

1 Answers  


what is publisher?

0 Answers   Microsoft,


Categories