AD MANAGEMENT
Collapse
BEHOSTED
Collapse
Announcement
Collapse
No announcement yet.
Search Result
Collapse
38 results in 0.0496 seconds.
Keywords
Members
Tags
-
Difference between union and structure?
Union and structure groups different variables together. UNION treats different variable with same memory space whereas structure uses different space for different variable.
-
What is Forward declarations ?
Programs must be declared before they can be used. PL/SQL supports mutual recursion, in which program A calls program B, whereupon program B calls program A. To implement this mutual recursion, you must use a forward declaration of the programs. This technique declares a program in advance of the program...
-
Use of fixed and scroll?
Fixed: The background is fixed with regard to the viewport
Scroll: The background scrolls along with the element. This is default
Syntax: background-attachment: scroll|fixed|local|initial|inherit;
Or The left menu bar is fixed but content portion is moving
-
How to determine the state of a checkbox using Javascript?
var checkedP = window.document.getElementById("myCheckBox").check ed;
-
What are Quantifiers?
LINQ extension methods which return a boolean value are called as Quantifiers. Some of them are as:
1. All()
2. Any()
3. Contains()
4. SequenceEqual()
-
How route table is created in ASP.NET MVC?
When an MVC application first starts, the Application_Start() method in global.asax is called. This method calls the RegisterRoutes() method. The RegisterRoutes() method creates the route table for MVC application.
-
Is an AJAX Request Synchronous or Asynchronous?
AJAX requests are asynchronous by nature, which means that they should run in the background independently of other events.
-
Does an AJAX Request Work on Different Domains?
Does an AJAX Request Work on Different Domains?
-
When do use "const" reference arguments in function?
a) Using const protects you against programming errors that inadvertently alter data.
b) Using const allows function to process both const and non-const actual arguments, while a function without const in the prototype can only accept non constant arguments.
c) Using a const reference...
-
How do I get form data emailed to me?
The only reliable mechanism for processing form submissions is with a server-side (e.g., CGI) program. To send form data to yourself via email, you should use a server-side program that processes the form submission and sends the data to your email address.
Some web service providers make standard...
-
What is System.Web.Mvc.Ajax namespace?
The System.Web.Mvc.Ajax namespace contains classes that support Ajax scripting in an ASP.NET MVC application. The namespace includes support for Ajax scripts and Ajax option settings as well.
-
What is MIME?
MIME - Multi-purpose Internet Mail Extensions.
Plz Any Body ?????????????????? What is MIME?
-
Flat-file, relational, object-relational
Databases are kind of like kitchen equipment: The simpler the tool, the more skilled the operator needs to be to achieve a great result. Expert chefs can produce gourmet fare using nothing but a very sharp knife and a few old pots and pans, whereas amateurs must whip out the Cuisinart and the Calphalon...
-
How’s the DLL Hell problem solved in .NET?
Assembly versioning allows the application to specify not only the library it needs to run (which was available under Win32), but also the version of the assembly
-
What is Overriding?
When we need to provide different implementation in a child class than the one provided by base class, we define the same method with same signatures in the child class and this is called overriding
Unconfigured Ad Widget
Collapse