简体   繁体   中英

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

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.

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"]);

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.
        }

The answer for me was an empty string!

In objnew.lastAppointmentNo=Convert.ToInt32(txtLastAppointmenNo.Text); , txtLastAppointmenNo.Text was an empty value.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM