In a Code-Behind class generally which type of code is
found ?
Answer Posted / psetty
In a code-Behind class server-side code is found. Because
code-behind is executed on the server. Eventhough it can
render client-side code such as JavaScript to be processed
in the clients browser. But just to be clear, code-behind
executes on the server, thus making it server-side code.
Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What are the various ways to send content from one page to another?
What is the parent class of all web server control?
Explain what does mvc represent in asp.net? : asp.net mvc
Is asp.net a programming language?
If you want to write your own dot net language, what steps you will you take care?
What is web api and why to use it?
What is asp short for?
What are the differnt types of handler in ASP.NET?
What do you mean by serialize and marshalbyref?
How do you store a value in viewstate and retrieve them?
What is the difference between web config and machine config files?
What is difference between viewstate and session state in javascript?
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.
Explain how can we access static variable?
What is the difference between WindowsDefaultLocation and WindowsDefaultBounds?