Home | Contact Us | Log In | Help
HOME NEW LISTING MOST POPULAR HIGHEST RATED SCRIPTS ADD SCRIPT DOWNLOADS FORUM
Tutorials
  ASP.Net & C#
  ASP
  Perl and PHP
  Java Scripts
  C and C++
  Ajax Tutorials
  J2ee, J2Me, Java
  Python & Ruby Rail
  Crystal Report
  Sap
  CGI
  XML
  Cold Fusion & CFML
  HTML, DHTML & CSS
  Dreamweaver
  FLASH
  Photoshop/Web Designing
  Tools & Utilities
  Oracle/D2K
  Sql Server
  MySql
  Domain Name Registration
  Remotely Hosting
  Web/Server Application
  Hotel Marketing
  Internet and Law
   Search Engine Optimization/SEO
E-Commerce
Interview Questions
Previous < 1 2 3 4 5 > Next
ASP (INTERVIEW QUESTIONS) 3
  What is the Order of precedence for LOGICAL Operators?
  1.Not
  2.And
  3.XOR
  4.OR
  5.IMP
  6.EQV
   
  What are order of precedence and associativity, and how are they used?

 Order of precedence determines the order in which operators are evaluated inexpressions. Associatitydetermines whether an expression is evaluated left-to-right or right-to-left.

 
  What is precedence of operators?
When number of operators occurs in an expression the operator which is to be evaluated first is judged by applying priority of operators. The arithmetic operators available in C are..
  +  used for Addition
  -  used for Subtraction
  *  used for Multiplication
  /  used for Division
  %  used for Modulus operation. In other words operator used to remainder after division
 
  How .NET is able to support multiple languages?

  A language should comply the Common Language Runtime standard to become a .NET language. In .NET, code is compiled to Microsoft Intermediate Language (MSIL for short) This is called as Managed Code.
This Managed code is run in .NET environment. So after compilation to this IL the language is not a barrier. A code can call / use a function written in another language.

 
  How ASP .NET different from ASP?

  Scripting is separated from the HTML
  Code is compiled as a DLL
  So advantages of compiled
  These DLLs can be ached in the server.

 
  What is smart navigation?

  The cursor position is maintained when the page gets refreshed due to the server side validation and the page gets refreshed.

 
  What is view state?

  The web is stateless. But in ASP.NET, the state of a page is maintained in the in the page itself automatically.
How? The values are encrypted and saved in hidden controls. this is done automatically by the ASP.NET This can be switched off / on for a single control

 
  How do you validate the controls in an ASP .NET page?

Using special validation controls that are meant for this. We have Range Validator, Email Validator.

 
  Can the validation be done in the server side? Or this can be done only in the Client side?

  Client side is done by default. Server side validation is also possible. We can switch off the client side and server side can be done.

 

Previous < 1 2 3 4 5 > Next

  Copyright 2000-2006 © SoloScript.com, All rights reserved.