DropDownList控件怎样向另一页面传参数?谢谢
是个考试系统、考试时需要选择专业、如何把选定专业传到另一页面。
我用DropDownList绑定了数据源、
string strsql="select * from ProfessionType";
DataSet ds = DB.FillDataSet(strsql, "type");
this.DropDownList1.DataSource = ds.Tables["type"];
this.DropDownList1.DataTextField="profName";
this.DropDownList1.DataValueField = "profID";
this.DropDownList1.DataBind();
另一页面需要根据选择的专业id、来选择考试类型。这个参数怎样传的?
请大侠指导指导、在这里谢了!