command.CommandText = "SELECT * FROM student details WHERE StudentID=@StudentID";
如何修改它以在上述程序语句中包含用户输入的学生 ID?
如果我理解正确,请使用:
command.Parameters.AddWithValue("@StudentID", int.Parse(yourTextBox.Text));
我猜你想要这个(虽然你的问题有点含糊):
int studentId;
if (int.TryParse(textbox1.Text, out studentId)) {
command.Parameters.AddWithValue("@StudentID", studentId);
}