Interview question of asp.net
1. | Difference between thread and process? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Thread - is used to execute more than one program at a time. process - executes single program | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2. | Explain Namespace. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Namespaces are logical groupings of names used within a program. There may be multiple namespaces in a single application code, grouped based on the identifiers’ use. The name of any given identifier must appear only once in its namespace. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3. | List the types of Authentication supported by ASP.NET. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Windows (default) Forms Passport None (Security disabled) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4. | What is CLR? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Common Language Runtime (CLR) is a run-time environment that manages the execution of .NET code and provides services like memory management, debugging, security, etc. The CLR is also known as Virtual Execution System (VES). | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5. | What is CLI? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The CLI is a set of specifications for a runtime environment, including a common type system, base class library, and a machine-independent intermediate code known as the Common Intermediate Language (CIL). | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6. | List the various stages of Page-Load lifecycle. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
o Init() o Load() o PreRender() o Unload() | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7. | Explain Assembly and Manifest. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
An assembly is a collection of one or more files and one of them (DLL or EXE) contains a special metadata called Assembly Manifest. The manifest is stored as binary data and contains details like versioning requirements for the assembly, the author, security permissions, and list of files forming the assembly. An assembly is created whenever a DLL is built. The manifest can be viewed programmatically by making use of classes from the System.Reflection namespace. The tool Intermediate Language Disassembler (ILDASM) can be used for this purpose. It can be launched from the command prompt or via Start> Run. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8. | What is Shadow Copy? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
In order to replace a COM component on a live web server, it was necessary to stop the entire website, copy the new files and then restart the website. This is not feasible for the web servers that need to be always running. .NET components are different. They can be overwritten at any time using a mechanism called Shadow Copy. It prevents the Portable Executable (PE) files like DLLs and EXEs from being locked. Whenever new versions of the PEs are released, they are automatically detected by the CLR and the changed components will be automatically loaded. They will be used to process all new requests not currently executing, while the older version still runs the currently executing requests. By bleeding out the older version, the update is completed. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9. | What is DLL Hell? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DLL hell is the problem that occurs when an installation of a newer application might break or hinder other applications as newer DLLs are copied into the system and the older applications do not support or are not compatible with them. .NET overcomes this problem by supporting multiple versions of an assembly at any given time. This is also called side-by-side component versioning. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10. | Explain Web Services. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Web services are programmable business logic components that provide access to functionality through the Internet. Standard protocols like HTTP can be used to access them. Web services are based on the Simple Object Access Protocol (SOAP), which is an application of XML. Web services are given the .asmx extension. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11. | Explain Windows Forms. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Windows Forms is employed for developing Windows GUI applications. It is a class library that gives developers access to Windows Common Controls with rich functionality. It is a common GUI library for all the languages supported by the .NET Framework. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12. | What is Postback? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
When an action occurs (like button click), the page containing all the controls within the <FORM... > tag performs an HTTP POST, while having itself as the target URL. This is called Postback. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13. | Explain the differences between server-side and client-side code? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Server side scripting means that all the script will be executed by the server and interpreted as needed. Client side scripting means that the script will be executed immediately in the browser such as form field validation, clock, email validation, etc. Client side scripting is usually done in VBScript or JavaScript. Since the code is included in the HTML page, anyone can see the code by viewing the page source. It also poses as a possible security hazard for the client computer. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14. | Enumerate the types of Directives. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@ Page directive @ Import directive @ Implements directive @ Register directive @ Assembly directive @ OutputCache directive @ Reference directive
|
Disable Right Click of Mouse on Your web Page Using Java Script
<html>
<head>
<script language="JavaScript">
function disable()
{
if (event.button == 2)
{
alert("Sorry no rightclick on this page.\nNow you can not view my source\nand you can not steal my images")
}
}
</script>
</head>
<body onmousedown="disable()">
<p>Right-click on this page to trigger the event.</p>
<p>The event property is not recognized in Netscape.</p>
<p>Note that this is no guarantee that nobody can view the page source, or steal the images.</p>
</body>
</html>
Web Layout in photoshop
Its my another web layout made in Photoshop. in this layout i got 3d look.its was amazing exprience
Reference
http://www.1stwebdesigner.com/
Reference
http://www.1stwebdesigner.com/
Simple Web Template in Photoshop
This is another web template design in Photoshop by Me. Please have a look and i am awaiting for your cool comment.
What is doctype of your webpage
Doctype is a special declaration at the very top of your webpage source, right above the <HTML> tag, that informs validators the rules in which to validate your page using, and for modern browsers (IE6+, Firefox, NS6+, Opera, IE5 Mac), whether to display your page in Quirks or Standards mode.
Below lists the major doctypes you can deploy on your webpage. All of them enters modern browsers into "Standards" mode when used.
** HTML 5 doctype
HTML 5 advocates the use of the very simple doctype:<!DOCTYPE HTML>In fact, it refers to doctypes as a "mostly useless, but required, header" whose purpose is just to ensure browsers render web pages in the correct, standards compliant mode. The above doctype will do that, including in IE8. Ideally this should be your first choice for a doctype unless you need your webpages to validate in pre HTML 5 versions of the W3C validator (which may still be the case at the time of writing). For future proofing your web pages, however, this is the doctype to go with.
** HTML 4.01 Transitional, Strict, Frameset
HTML 4.01 transitional doctype supports all attributes of HTML 4.01, presentational attributes, deprecated elements, and link targets. It is meant to be used for webpages that are transitioning to HTML 4.01 strict:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">HTML 4.01 Strict is a trimmed down version of HTML 4.01 with emphasis on structure over presentation. Deprecated elements and attributes (including most presentational attributes), frames, and link targets are not allowed. CSS should be used to style all elements:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">HTML 4.01 frameset is identical to Transitional above, except for the use of <frameset> over <body>:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
** XHTML 1.0 Transitional, Strict, Frameset
Use XHTML 1.0 Transitional when your webpage conforms to basic XHTML rules, but still uses some HTML presentational tags for the sake of viewers that don't support CSS:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">Use XHTML 1.0 Strict when your webpage conforms to XHTML rules and uses CSS for full separation between content and presentation:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">XHTML 1.0 frameset is identical to Transitional above, except in the use of the <frameset> tag over <body>:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
** XHTML 1.1 DTD
XHTML 1.1 declaration. Visit the WC3 site for an overview and what's changed from 1.0:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">