6. If we assign a value in textbox on Page_UnLoad event,
will it display?

Answer Posted / radheshyam mali

because,page_unload time not value dipaly

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of class in c#?

501


What is the namespace for the thread class?

517


Why do we need escape characters?

483


What is difference between override and new in c#?

512


What is iqueryable in linq?

497






why delegate is type safe?

2603


What is definition in c#?

479


Distinguish between array and arraylist in c#?

578


What is the purpose of private constructor in c#?

549


Explain deadlock?

517


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

3330


What is the use of oops in c#?

504


What do you mean by abstract class in c#?

502


What is array class in c#?

461


What is monitor in C#?

595