Answer Posted / lokendra khandelwal
common language specification defines the common types that
are supported by the languages which are compatible with the
.net framework. For example if u develop a webservice with
functions which are accepting unsigned integer values as
parameter and u want to use that service in a language that
won't supports unsigned integers then u will get a problem
.So the languages which wants to be compatable with .net
must support the types that are specified by CLS.
CTS is the service which is used by the CLR to manage the
code.CTS can express the semantics of any programming
language. CTS defines a standard set of types and rules to
create new types.The runtime understands how to create and
execute these types.Compilers and interpreters use the
runtime(CLR) services like CTS to define types,manage
objects and make method calls instead of using tool or
language specific methods.CTS goal is to enable multi
language integration
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is difference between session and cookies?
How many web config files can be created for an application?
What is the question mark in a url?
How to use ipostback?
What is the difference between Hash table and Array list?
How many ways are there to maintain a state in .net? What is view state?
What is request and response in asp.net?
What are the cookies types in asp.net?
What is difference between mvc and asp.net? : Asp.Net MVC
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
Where is the session stored?
What is redirectpermanent in asp.net?
What is the application pool?
What are the features of asp net?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.