How to convert a string into an Integer in ASP.net?
Answer Posted / suresh
int.Parse parses the input (casts in a sense) to an integer
value however it will throw an exception if it cant do it if
the data provided is not numeric. you should use TryParse in
.NET 2.0 to see if it can parse it.
int a = Int.Parse("int");
Convert.ToInt32() converts the string data to a proper true
int32 value, and throws an exception if it can't convert the
value.
int a = Convert.Int32("String");
Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is an example of an application service provider?
Is it possible to create web application with both webforms and mvc?
What is the use of placeholder control?
What is the life cycle of an asp.net page?
Can you edit data in the Repeater control? Which template must you provide, in order to display data in a Repeater control? How can you provide an alternating color scheme in a Repeater control? What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?
What is ViewState? What does the "EnableViewState" property do? Why would I want it on or off?
What are the features of asp net?
How to improve performance of web application asp.net mvc? : Asp.Net MVC
What is cookieless session id explain in brief?
What are Caching techniques in .NET
What’s difference between “optimistic” and “pessimistic” locking?
What are resource file and how do we generate resource file?
How long does an http session last?
What are session objects?
Distinguish between Server-side and Client-side code with its functionality?