Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I convert a string to an int type in C#?

Tags:

c#

asp.net

I am taking a string value from a textbox named txtLastAppointmentNo and I want to convert it to an int and then store it in a database using Linq to sql but I am getting error "input string was not in proper format".

My input string is 2.

My code is:

      objnew.lastAppointmentNo=Convert.ToInt32(txtLastAppointmenNo.Text);

Please point out my mistake.

like image 263
Nauman.Khattak Avatar asked Jul 26 '10 07:07

Nauman.Khattak


2 Answers

Assuming you are using WebForms, then you just need to access the textbox value and not the textbox itself:

objnew.lastAppointmentNo = Convert.ToInt32(txtLastAppointmenNo.Text);

Or if you are referencing the HTML control then:

objnew.lastAppointmentNo = Convert.ToInt32(Request["txtLastAppointmenNo"]);
like image 118
Dustin Laine Avatar answered Oct 13 '22 23:10

Dustin Laine


You can also go for int.Parse or int.TryParse or Convert.ToInt32

//int.Parse
int num = int.Parse(text);
//Convert.ToInt32
int num = Convert.ToInt32(text);

//int.TryParse
string text1 = "x";
        int num1;
        bool res = int.TryParse(text1, out num1);
        if (res == false)
        {
            // String is not a number.
        }
like image 27
Pranay Rana Avatar answered Oct 13 '22 23:10

Pranay Rana