Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 ASP.Net Interview Questions and Answers/ FAQs
Which one is the process dependent Session?
InProc
Which are two main keywords used for authorization in web.config file?
1. allow
2. deny
How to set a cookie?
HttpCookie myCookie = new HttpCookie("myWebSiteName");
myCookie.Value = "http://www.faqpanel.com/";
myCookie.Expires = DateTime.Now.AddMonths(6);
Response.Cookies.Add(myWebSiteName);
How to get a cookie?
if (Request.Cookies["myWebSiteName"] != null)
{
string myWebSiteUrl = Request.Cookies["myWebSiteName"].Value;
}
Some ASP.Net acronyms are...
CIL - Common Intermediate Language
The language all .NET languages compile to. Equivalent to Java bytecode.

CLI - Common Language Infrastructure
The combination of the CLR, CLS, CTS and CIL

CLR - Common Language Runtime
The runtime environment itself, including garbage collection, threading etc.

CLS - Common Language Specification
A set of conventions intended to promote language interoperability.

CTS - Common Type System
The language-neutral type system used in the CLI.

IL - Intermediate Language
More commonly used abbreviation for CIL.

VES - Virtual Execution System
Another name for the CLR as far as I can tell.

Describe .Net Framework Class Library.
It consist of thousands of Pre-developed classes that can be used to build robust .Net applications.
What is garbage collection?
Garbage collection is a mechanism that allows the computer to detect when an object can no longer be accessed. It then automatically releases the memory used by that object (as well as calling a clean-up routine, called a "finalizer", which is written by the user). Some garbage collectors, like the one used by .Net, compacts memory and therefore decrease your programs working set.
FirstPreviousDisplaying page 4 of 36NextLast
What is the significance of CommandBehavior.CloseConnection?
Why is ADO.Net serialization slower than ADO?
How to cancel the execution of the command at run time?
What is the RaiseEvent used for?
What is WYSIWYP?
How do you turn off cookies for one page in your site?
What is the Internationalization in ASP.Net ?
Explain the System.DirectoryServices namespace in .Net Framework Class Library
What is Command Object in ADO.Net?
What are the two main components of .Net framework?