Explain the differences between Server-side and Client-side
code?
Answer Posted / eswar reddy
server side code is executed at the server on IIS in ASP.NET
frame work,while client side code is executed on the server.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
How to unit test Web API?
Can we add code files of different languages in app_code folder?
What is IPostBack? How to use it?
What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC
Where code pages are used?
What is user control in asp.net?
What is autopostback in asp net?
What does passport and windows authentication mean in ASP.NET?
Can you explain one critical mapping? Performance issue which one is better?
Explain the difference between panel and groupbox classes using .net?
What are the advantages of passport authentication?
Describe the events in the life cycle of a web application.
How to display validation messages in one control?
What is a runtime version?
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.