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


Please Help Members By Posting Answers For Below Questions

What is an example of an application service provider?

635


Is it possible to create web application with both webforms and mvc?

715


What is the use of placeholder control?

734


What is the life cycle of an asp.net page?

672


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?

761


What is ViewState? What does the "EnableViewState" property do? Why would I want it on or off?

867


What are the features of asp net?

692


How to improve performance of web application asp.net mvc? : Asp.Net MVC

708


What is cookieless session id explain in brief?

716


What are Caching techniques in .NET

782


What’s difference between “optimistic” and “pessimistic” locking?

773


What are resource file and how do we generate resource file?

752


How long does an http session last?

678


What are session objects?

721


Distinguish between Server-side and Client-side code with its functionality?

829