在 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
?