No announcements
Found 1465076 threads
-
1 Votes
Input string was not in a correct format.
Thanks for Answer, As I apply String.IsNullOrEmpty in my code with If condition but still found the same error that Input String was not in a correct format.Answered | 5 Replies | 4453 Views | Created by Always Learn - Thursday, January 14, 2010 7:43 PM | Last reply by Always Learn - Saturday, January 16, 2010 6:51 PM -
0 Votes
Input string was not in a correct format
Hi Adghar, According to your description, you receive an error “Input string was not in a correct format” when you preview the ...Answered | 3 Replies | 14633 Views | Created by Adghar - Friday, May 22, 2015 1:11 PM | Last reply by Adghar - Monday, May 25, 2015 10:58 AM -
0 Votes
Input string was not in a correct format.?
My guess, you've got some invalid string input in fields that take only numerical string values.Answered | 2 Replies | 10330 Views | Created by TejaManimala - Thursday, June 6, 2013 4:31 AM | Last reply by Chinese_XU - Friday, June 7, 2013 9:05 AM -
3 Votes
Input string was not in a correct format
System.FormatException: Input string was not in a correct format.Answered | 16 Replies | 4406 Views | Created by panadi - Monday, October 17, 2016 1:38 PM | Last reply by Mauricio Feijo - Wednesday, October 26, 2016 4:47 PM -
2 Votes
Input string was not in the correct format
The method works after changing the month placeholder to "MM" and the date is now in the correct format displayed as "02/16/2012" in the textbox.Answered | 22 Replies | 11752 Views | Created by favourGreen - Sunday, February 12, 2012 12:48 PM | Last reply by favourGreen - Monday, February 20, 2012 5:47 AM -
3 Votes
Input string was not in a correct format.
I change the code for Convert.ToInt32(Something.text) to Int32.Parse(Something.text) but it shows again Input string was not in a correct format.Answered | 5 Replies | 16158 Views | Created by Gaurab Chatterjee - Thursday, March 5, 2009 8:48 AM | Last reply by Matthew Watson - Thursday, March 5, 2009 9:51 AM -
0 Votes
Input string was not in a correct format.
well, you'd ensure thet the data inputted are in a correct format, i mean that you'd test txtQuantity.Text a txtRate.Text and you'd respect the ...Answered | 6 Replies | 4427 Views | Created by sunil_sonu322 - Sunday, April 4, 2010 6:41 AM | Last reply by Yasser Zamani - Mr. Help - Sunday, April 4, 2010 10:32 AM -
2 Votes
Input string was not in a correct format
Input string was not in a correct formatAnswered | 10 Replies | 1999 Views | Created by seeh243 - Tuesday, April 17, 2012 12:21 AM | Last reply by Mitja Bonca - Tuesday, April 17, 2012 4:16 PM -
2 Votes
Input string was not in a correct format.
If it was empty or contained a float such as 1.23 or an alpha string such as "Egad!Answered | 6 Replies | 932 Views | Created by sai_kumaresh - Friday, June 13, 2014 7:57 AM | Last reply by Muthukrishnan Ramasamy - Friday, June 13, 2014 7:18 PM -
2 Votes
Input string was not in a correct format
Can you confirm that the string can be converted to a number, ie the string contains a number.Answered | 9 Replies | 31764 Views | Created by Mikey52 - Wednesday, September 2, 2009 1:37 PM | Last reply by mskate - Friday, April 29, 2011 4:18 AM -
1 Votes
Input string was not in a correct format
And calling ToString on it was likely still keeping it as a string.Answered | 6 Replies | 728 Views | Created by DIEGOCTN - Friday, December 2, 2016 4:13 PM | Last reply by Wyck - Wednesday, December 14, 2016 6:34 PM -
2 Votes
input string was not in a correct format
Try as below: string str = "2.354"; float flt = ...Answered | 2 Replies | 5123 Views | Created by ramakanta - Thursday, November 22, 2012 2:39 PM | Last reply by Shyam Kr - Tuesday, November 27, 2012 7:11 AM -
3 Votes
input string was not in a correct format
If the error you're receiving is "input string was not in a correct format", there's something wrong with the string, in other ...Answered | 12 Replies | 3322 Views | Created by Andrea Gennaretti - Tuesday, September 22, 2009 2:20 PM | Last reply by Andrea Gennaretti - Monday, September 28, 2009 12:31 PM -
2 Votes
Input string was not in a correct format.
As Konrad told, problem is with your input string.Answered | 11 Replies | 2325 Views | Created by Tornike Bibiblashvili - Thursday, March 29, 2012 11:17 AM | Last reply by Konrad Neitzel - Friday, March 30, 2012 9:49 AM -
2 Votes
Input string was not in a correct format
string[] data = line.Split(' '); int num = int.Parse(data[0]); dict[data[1]] = numAnswered | 6 Replies | 1625 Views | Created by WHITELIONX - Tuesday, February 3, 2015 4:15 PM | Last reply by WHITELIONX - Tuesday, February 3, 2015 5:28 PM -
1 Votes
Input string was not in a correct format
hi , in list.aspx in addbtnnclick i used response.redirect("");// now it's not showing error. previously i have server.transer("");//there it shows error ...Answered | 9 Replies | 1936 Views | Created by emaak - Monday, February 17, 2014 9:32 PM | Last reply by SQLZealots - Tuesday, February 18, 2014 5:07 PM -
0 Votes
Input string was not in a correct format.
your error was most likely caused because the string was empty or contained something not numeric (letter or special char) The best way imo to convert a ...Answered | 4 Replies | 1956 Views | Created by twinkle0903 - Thursday, February 2, 2012 3:49 AM | Last reply by Svexo - Thursday, February 2, 2012 2:53 PM -
1 Votes
Input string was not in a correct format
int.TryParse(strText.Split(' ')[0], out value)) value = 1; Don't forget to mark the correct answerAnswered | 2 Replies | 3630 Views | Created by Gabo159 - Thursday, March 24, 2011 9:25 AM | Last reply by Oleksandr Reminnyi - Thursday, March 24, 2011 9:33 AM -
0 Votes
Input String was not in correct format.
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WhileDemo { class Program ...Answered | 1 Replies | 2390 Views | Created by Jaya Kumar Reddy - Saturday, May 12, 2012 3:36 PM | Last reply by Joel Engineer - Saturday, May 12, 2012 5:01 PM -
1 Votes
Input string was not in correct format with ampersand ?
How you provide this input string?Answered | 2 Replies | 4840 Views | Created by Mina Samy - Thursday, November 5, 2009 8:25 AM | Last reply by Mina Samy - Thursday, November 5, 2009 8:37 AM - Items 1 to 20 of 1465076 Next ›
No announcements