Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

How many types of triggers are there in update panel?

1068


What is mvc in angular?

1024


What is http response header?

1164


Difference between web user control and web custom control?

978


Explain the differences between clr & cts?

1048


What is the difference between asp.net mvc and asp.net webforms? : asp.net mvc

1093


How we implement web farm and web garden concept in asp.net?

1037


Describe Segmentation With Paging?

1111


In order to get assembly info which namespace we should import?

1049


Differences between “dataset” and “datareader”.

1119


What is a web api? Which protocol is used in a web api?

1124


How many web config files can be created for an application?

908


What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc

1073


How do you implement sql caching in asp.net?

1106


How does session id work?

950