将Datalist项转换为int

时间:2016-08-04 17:15:47

标签: c# visual-studio

如何将从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);
        }

0 个答案:

没有答案