What is prerender event of a page?
Answers were Sorted based on User's Feedback
Answer / srinivas
For every request to .aspx page the ASP.NET work processor
will create a new instance of the corresponding page class
object, once the request is executed the object of page
class is destroyed automatically, the page object life cycle
is controlled by its page life cycle events those are:
1 page_Init
2 page_Load
3 page_Prerender
4 Page_Unload
Page_Prerender: After page executed and before rendering the
output values to the the requested browser this event executes
| Is This Answer Correct ? | 12 Yes | 6 No |
Explain why do we use msmq?
Explain acid properties?
What tags do you need to add within the asp:datagrid tags to bind columns manually.
What is gac in .net?
Explain can 2 different applications use the same dll in gac at the same time?
Explain what is the difference between a class and an object, and how do these terms relate to each other?
What is alias ? Is it used in .Net ?
Is there any inbuilt tool or command provided by .NET to view the code inside the assembly?
What is new in .net core?
What are .net applications?
Explain the purpose of Remoting in .NET?
0 Answers Petranics Solutions,
String[] a = new string[10] for(i=0; i<10; i++) { a[i] = i; } How many heap object will be created for this array. Choose the answer below. Ans: 1, 10, 11, 12