What is the difference between a Stored procedure and function?
Answer Posted / sanjay das
Function allways returns value but stored procedure may or
may not return value.
Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
How do we ensure view state has not tampered?
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
What is razor? : asp.net mvc
How do you do client-side validation in .net? How to disable validator control by client side javascript?
Is it possible to migrate visual interdev design-time controls to asp.net?
Explain how can we access static variable?
What are the differences between code behind and code inline?
What are the asp.net list controls and difference between them?
What is voluum?
benefits of migration from asp to asp.net hi frnds, i have to give presentation to a client about how useful would be migrating their project from asp to asp.net .plz give me some points which i should incorporate in my ppt thanks
Explain the namespace classes used in asp.net mvc? : asp.net mvc
What is caching? What are different ways of caching in asp.net?
What is the use of web.config file?
What is difference between URL and URI?
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.