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 stri开发者_开发知识库ng 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.
精彩评论