我有一个下拉列表,我使用代码隐藏从我的数据库中获取了值。
从源读取数据后,我添加了一个新值,称为“..添加新技能”。
现在,当用户单击该项目时,我需要打开一个小页面(或者更确切地说是一个新页面)以添加 DropDownList 中未提及的技能。
if (!IsPostBack)
{
SqlConnection myConn = new SqlConnection(@"Data Source=USER-PC\SQLEXPRESS;Initial Catalog=KKSTech;Integrated Security=True");
SqlCommand myCmd = new SqlCommand(
"SELECT SkillName, SkillID FROM Skills", myConn);
myConn.Open();
SqlDataReader myReader = myCmd.ExecuteReader();
//Set up the data binding.
DropDownList1.DataSource = myReader;
DropDownList1.DataTextField = "SKillName";
DropDownList1.DataValueField = "SkillID";
DropDownList1.DataBind();
//Close the connection.
myConn.Close();
myReader.Close();
//Add the item at the first position.
DropDownList1.Items.Insert(0, "..Add New Skill");
}
这是我的代码隐藏文件。我现在如何链接它?