There is Cancel button and OK button on page. When we click Cancel button it skips all validation controls and goes to next page.(a)Page AutoPostback of Cancel is True.(b)Page AutoPostback of Cancel is
Latest Answer: AutoPostBAck is a property of TextBox Control and not a button which is rendered as a summit and will submit the page.If the real question is about validation, the cancel button normally has its property CauseValidation to false to enable the user to ...
When do you apply Namespace Alias Qualifiers and Extern Namespaces Alias?
Latest Answer: It is supposed to be used when a member in program might be hidden by another entity of the same name. ...
What do you mean by Explicit Interface Implimentation? What's Interface Mapping?
Latest Answer: A class that implements an interface can explicitly implement a member of that interface. When a member is explicitly implemented, it cannot be accessed through a class instance, but only through an instance of the interface ...
What is the use of serializable keyword in C#?
Latest Answer: Preserving the state of an object is called as serialization and serialization is needed whenever you want communicate across process as well as physical boundaries. ...
What is difference between "Session" and "Session" Objects? What is the use of "postbackurl" and "navigateurl" and the differences between those two things?
Latest Answer: PostBackUrl is a property of the control which are in the "Button Family" and NavigateUrl is property of the control in the "Link Family". ...
Explain What are Object Oriented Language and Object Based Language
Latest Answer: Any langauge based on encapsulation concpet and operations with the objects are called as Object Based language. Exmaple : VB is a Object based and not an Object orientedAny langauge based on encapsulation concept and operations with the objects and also ...
Latest Answer: Exception handling is an in built mechanism in .NET framework to detect and handle run time errors. The .NET framework contains lots of standard exceptions. The exceptions are anomalies that occur during the execution of a program. They can be because ...
Latest Answer: Process Request Method does following things:Intialize the memory Load the view state Page execution and post back events Rendering HTML content Releasing the memory Process Request Method executes set of events for page class .These are called as Page ...
can we use pointer in c# ?if we can then how it can implement ?and if no then why we can not use pointer in c#?
Latest Answer: we can use pointers in C# within the scope of unsafe code e.g.:unsafe{//all pointer related code here}but doing so, makes ur code un managed.Also, if you want to have pointers to class level variables, you must use fixed keyword. ...
What is difference between these two statement? if variable is declared and assign value in following two waysString sValue = (String)GridView1.DataKeys[GridView1.SelectedIndex].Value;String sValue = GridView1.DataKeys[GridView1.SelectedIndex].Value.ToString();
Latest Answer: .tostring method doesot handle null value where as other does..vijay ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top