The Query String helps in sending the page information to the server.The Query......
Home
Archives for 2012
Tuesday, November 20, 2012
What is Query String? What are its advantages and limitations?

Tags
What is IIS? Why is it used?

Tags
Internet Information Services (IIS) is created by Microsoft to provide Internet-based......
What is the behavior of a Web browser when it receives an invalid element?

Tags
The behavior of a Web browser when it receives an invalid element depends on the......
What are the advantages of the code-behind feature?

Tags
The code-behind feature of ASP.NET offers a number of advantages:
Makes code......
What is the difference between Custom Control and User Control?

Tags
Custom Controls are compiled code (Dlls), easier to use, difficult to create,......
What are the difference between Structure and Class?

Tags
Structures are value type and Classes are reference type
Structures can not have......
What is the difference between static or dynamic assemblies?

Tags
Assemblies can be static or dynamic. Static assemblies can include .NET......
What’s a bubbled event?

Tags
When you have a complex control, like DataGrid, writing an event processing routine......
What is the difference between Server.Transfer and response.Redirect?

Tags
The Server.Transfer () method stops the current page from executing,......
What is the difference between Classic ASP and ASP.Net?

Tags
ASP is Interpreted language based on scripting languages like Jscript or......
What are basic methods of a DataAdapter?

Tags
These are the most commonly used methods of a DataAdapter:
Fill
Executes......
What is the use of Command objects?

Tags
They are used to connect a Connection object to a DataReader or DataSet.......
What is the namespace in which .NET has the data functionality class?

Tags
Following are the namespaces provided by .NET for data management:
System.Data
This......
What is the difference between a struct and a class in C#?

Tags
From language spec: The list of similarities between classes and structs......
Is there a way of specifying which block or loop to break out of when working with nested loops?

Tags
The easiest way is to use goto:
using System;
class BreakExample
{
public......
Is there any sample C# code for simple threading?

Tags
using System;
using System.Threading;
class ThreadTest
{
public void runme()
......
My switch statement works differently than in C++! Why?

Tags
C# does not support an explicit fall through for case blocks. The following code......
What is implementation and interface inheritance?

Tags
When a class (type) is derived from another class(type) such that it inherits......
Monday, November 19, 2012
What is the lifespan for items stored in ViewState?

Tags
The items stored in ViewState live until the lifetime of the current page expires......
How can we identify that the Page is Post Back?

Tags
Page object has an "IsPostBack" property, which can be checked to know that is......
In which event are the controls fully loaded?

Tags
Page load event guarantees that all controls are fully loaded. Controls are also......
What is the basic difference between ASP and ASP.NET?

Tags
The basic difference between ASP and ASP.NET is that ASP is interpreted;
whereas,......
What is ASP.NET?

Tags
ASP.NET is a specification developed by Microsoft to create dynamic Web
applications,......
What is ASP?

Tags
Active Server Pages (ASP), also known as Classic ASP, is a Microsoft's
server-side......
Subscribe to:
Posts (Atom)