在aspx页面中我有一个文本框
<asp:TextBox ID="txtrandom" runat="server"></asp:TextBox>
在.cs页面中,我从该文本框中检索te值并将其转换为int
,以便可以在for
循环中使用。
在.cs页面
int random;
random = Convert.ToInt16(txtrandom.Text);
for (int i = 0; i < random; i++)
{
//other code
}
但是当我执行时,它会将错误视为Input string was not in correct format
。如何将其转换为int
?
答案 0 :(得分:2)
Plz尝试以下代码
int random=0;
bool isValidInt = int.TryParse(txtrandom.Text, out random);
if (isValidInt)
{
for (int i = 0; i < random; i++)
{
//other code
}
}
else
{
Response.Write("Please enter valid int value in textbox.");
txtrandom.Focus();
}
由于
答案 1 :(得分:1)
您应该使用文本框作为数字类型,并且可以使用Int转换
int someInt;
int.TryParse(s, out someInt);
因此无论转换Int32是否成功,返回值都是无关紧要的。
答案 2 :(得分:1)
首先,您需要了解“将值转换为整数必须将转换后的值转换为int类型”。在文本框中输入的值是一种字符串,因此它可以是任何类型。
首先,您需要检查有效的INT值。为此你需要这样做
int random = 0;
bool isValidInt = int.TryParse(txtrandom.Text, out random);
如果转换成功,则可以使用现在位于random
代码看起来像(参考:Hitesh的回答)
if (isValidInt)
{
for (int i = 0; i < random; i++)
{
//other code
}
}
else
{
Response.Write("Please enter valid int value in textbox.");
txtrandom.Focus();
}
答案 3 :(得分:0)
这些是推荐的方法..
int anInteger;
anInteger = Convert.ToInt32(textBox1.Text);
anInteger = int.Parse(textBox1.Text);
答案 4 :(得分:0)
首先,您需要确保只在该文本框中输入数字。这样,在将其转换为整数值时,您不会遇到任何异常。
使用regular expression validator
确保only Integers are entered into that Textbox
带有验证表达式^[0-9]+$
此外,您需要在使用的数据类型上保持一致。使用Int32
然后
if(!Textbox1.Text.Equals("")) // you can take care of "" by using required field validator
{
Int32 random = Convert.ToInt32(Textbox1.Text);
}
现在相应地使用此值。