- 10 months ago
- Aditya Kumar Patel
- 408 Views
- Comments
- ASP.NET
In this article you will learn about ASP.NET Interview questions and answers.In asp.net web application if you want a control to postback automatically when an event is raised, you need to set the AutoPostBack property of the control to True.
- 10 months ago
- Aditya Kumar Patel
- 448 Views
- Comments
- ASP.NET
In this article you will learn about ASP.NET Interview questions and answers.
- 10 months ago
- Aditya Kumar Patel
- 531 Views
- Comments
- ASP.NET
.NET interview questions and answers section The items stored in ViewState live until the lifetime of the current page expires including the postbacks to the same page.
- 10 months ago
- Aditya Kumar Patel
- 579 Views
- Comments
- ASP.NET
.NET interview questions and answers section Page object has an "IsPostBack" property, which can be checked to know that is the page posted back.
- 10 months ago
- Aditya Kumar Patel
- 441 Views
- Comments
- ASP.NET
.NET interview questions and answers section The difference between ASP and ASP.NET is that ASP is interpreted; whereas, ASP.NET is compiled. This implies that since ASP uses VBScript; therefore
- 11 months ago
- Aditya Kumar Patel
- 604 Views
- Comments
- C#
Destructor is a special method of a class which get called automatically when an instance of the class is destroyed.
- 11 months ago
- Aditya Kumar Patel
- 523 Views
- Comments
- C#
Constructor is a special method of a class which get called automatically when an object of a class is created. Constructors are specially used to initialize data members.
- 11 months ago
- Aditya Kumar Patel
- 547 Views
- Comments
- C#
C# is the best object-oriented programming language for writing Microsoft .NET applications. C# provides the rapid application development found in Visual Basic with the power of C++.
- 11 months ago
- Aditya Kumar Patel
- 563 Views
- Comments
- SQL Server
A local temporary table is created using CREATE TABLE statement with the table name prefixed with single hash sign (#table_name).
- 11 months ago
- Aditya Kumar Patel
- 492 Views
- Comments
- SQL Server
NonClustered Index does not alter the stored data in physical order of the table and maintains logical order of data. Each table can have more than one non-clustered indexes.