explain about Back ground process control in .net



explain about Back ground process control in .net..

Answer / manju

page init()
page load()
prerender()
unload()

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

How does the browser enable AutoPostBack functionality?

2 Answers  


accessing a textbox that was created dynamically? for (int i = 0; i < t1; i++) { TextBox t2 = new TextBox(); t2.ID = "adf" + i; PlaceHolder1.Controls.Add(t2); } accessing data entered in the above created controls.

1 Answers  


Why do we use web config?

0 Answers  


What are the asp.net objects? is it application obects, cache objests etc. or is it state managements, web services etc?

3 Answers   Syntel,


What r Callbacks in ASP.NET?

1 Answers  






What is asp.net mvc5? : Asp.Net MVC

0 Answers  


You are using the try? catch block seen in the following code segment, but no exceptions are ever caught by the catch block. What is the problem? SqlConnection cn =new sqlConnection(strSQL); SqlDataSet ds; try { cn.open(); //perform the data processing steps ??.. } catch (OleDbException e) { ?.. } a) The exception class is wrong; it should be sqlErrors. b) The exception class is wrong; it should be sqlSyntaxExceptios. c) The exception class is wrong; it should be sqlExceptions. d) The exception class is wrong; it should be sqlExcptions.

2 Answers   Microsoft, Syntax Softtech,


Explain how can you debug your .net application?

0 Answers  


what is synchronization and asynchronization. what are the difference between two?

1 Answers   TCS,


Any disadvantages in Dataset and in reflection ?

0 Answers   DELL, Digital GlobalSoft,


Is there any alternative to avoid name collisions other then Namespaces?

0 Answers  


Is LINQ performance wise better or using sqlcommand?

1 Answers  


Categories