problem in input
-
hi i have problem with this code objCommand.Parameters["@nopersoneli"].Value = Int32.Parse(vpost.txtNoPersoneli.Text); :error Input string was not in a correct format why? please help me
-
hi i have problem with this code objCommand.Parameters["@nopersoneli"].Value = Int32.Parse(vpost.txtNoPersoneli.Text); :error Input string was not in a correct format why? please help me
-
hi i have problem with this code objCommand.Parameters["@nopersoneli"].Value = Int32.Parse(vpost.txtNoPersoneli.Text); :error Input string was not in a correct format why? please help me
What is the type of objCommand? What is your vpost.txtNoPersonali.Text?
-
What is the type of objCommand? What is your vpost.txtNoPersonali.Text?
txtNoPersoneli forexample=45
-
txtNoPersoneli forexample=45
What is objCommand? It's possible that your objCommand.Parameters["@nopersoneli"].Value gets string and you get it an integer variable. and what is this "@" for?
-
hi i have problem with this code objCommand.Parameters["@nopersoneli"].Value = Int32.Parse(vpost.txtNoPersoneli.Text); :error Input string was not in a correct format why? please help me
Most likely you have some type of invalid character in vpost.txtNoPersoneli.Text...
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
-
hi i have problem with this code objCommand.Parameters["@nopersoneli"].Value = Int32.Parse(vpost.txtNoPersoneli.Text); :error Input string was not in a correct format why? please help me
Hi. Please write your snippet code here.
-
hi i have problem with this code objCommand.Parameters["@nopersoneli"].Value = Int32.Parse(vpost.txtNoPersoneli.Text); :error Input string was not in a correct format why? please help me
try
objCommand.Parameters.add["@nopersoneli"].Value = convert.toint32(txtNoPersoneli.Text);
nelsonpaixao@yahoo.com.br trying to help & get help