How to Convert a String into Float without using any built-
in library of .NET
String = "1235.45" needs to converted to a float
Answer Posted / lince
string str = "555.67";
double a;
a=Convert.ToDouble (str);
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is the Difference between MVC And MVP design pattrens
Is LINQ performance wise better or using sqlcommand?
Define caching.
What is the difference between mechine.config and web.config?
Explain model, view and controller represent in an mvc application? : asp.net mvc
What is a global postback url?
What are sessions used for?
Is there any property names “isnavigating”?
What are the event handlers that can be included in the Global.asax file?
Which object wraps the state or data of a user?
Explain the Session state management options available with 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.
What are Caching techniques in .NET
What is cross page posting in asp net?
What are the asp.net 2.0 features?