What are clr?cts?cls?
Answer Posted / gangadhar
All .NET applications are compiled into Intermediate
Language code (MSIL). When executed on the CLR, MSIL is
converted into native machine code specific to the
operating platform. This process is done by a Just In Time
(JIT) compiler. The code executed by the CLR is called as
Managed Code. This code is type safe and thoroughly checked
by the CLR before being deployed. The .NET runtime also
provides a facility to incorporate existing COM components
and DLL's into a .NET application. Code that is not
controlled by the CLR is called Unmanaged Code.
The .NET Framework is further comprised of Common Type
System (CTS) and Common Language Specification (CLS). The
CTS defines the common data types used by .NET programming
languages. The CTS tells you how to represent characters
and numbers in a program. The CLS represents the guidelines
defined by for the .NET Framework. These specifications are
normally used by the compiler developers and are available
for all languages, which target the .NET Framework.
| Is This Answer Correct ? | 20 Yes | 4 No |
Post New Answer View All Answers
In which event of page cycle is the viewstate available?
Where code pages are used?
Error : The operation couldn’t be performed because ole db provider sqlncli10 for linked server was unable to begin a distributed transaction.00000110 oledb provider for linked server returned message the partner transaction manager has disabled its support for remote/network transactions. I can able to execute the stored procedure in sql server but when i run the web page getting error like above. I did all the configuration. what is the solution?
How do I publish my asp.net application to my isp's web server?
What is a web api? Which protocol is used in a web api?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
What are the validation controls available in ASP.NET?
What is razor? : asp.net mvc
What are the two Layouts supported by a Web form in ASP.NET?
How to Insert/Add in ASPXgridview
Explain exception handling in .net.
What is an il?
What is a ashx file?
What is ashx file in asp.net?
Can we have a web application running without web.config file?