如何将从SqlDataSource
投放的数据列表项转换为Int
?
这是我想要做的。 我试图将文本框中的输入与数据列表中显示的项目进行比较,该项目从数据源获取数据。
int Min;
Min = Convert.ToInt32(TextBox1.Text);
int Min2;
Min2 = Convert.ToInt32(DataList1.Items);
if (Min >= Min2)
{
ScriptManager.RegisterStartupScript(this, GetType(), "AlertMessage",
"alert('Please make sure that the off bench time is smaller than the on the clock time.');
", true);
}