发布网友 发布时间:2024-10-08 15:18
共1个回答
热心网友 时间:2024-10-08 17:21
这样做吧,读取数据库Eva_charge取得主管的名字存在一个tabel中,然后再循环读取,循环一次,取得一个名字,然后再后台向前台添加一串控件:姓名:[从数据库读取的名字<%#Eval("UserName ")%>)]]选项:[DropDownList(ID属性动态定义,例如ID="str_<%#Eval('ID')%>")]评完分后,提交时,又循环取得UserName 和 对应的str_<%#Eval('ID')%>的DropDownList上的SelectedValue 值 然后再依次存入数据表中 ...
asp.net中如何让DropDownList控件显示的数据固定你用什么做那个筛选的功能..是在dropdownlist上面放一个button还是linkbutton?如果是这样的是,直接编写这个按钮的点击事件...做法:点击这个按钮的时候,判断这个按钮的text,比如是 降序...那你就查数据库...然后你通过查数据库的sql语句 就加一个 order by 字段 desc 然后在把 按钮的text改成 升序...
ASP.NET中的DropDownList控件的使用??使用 DropDownList Web 服务器控件,用户可以从单项选择下拉列表框中进行选择。DropDownList 控件与 ListBox Web 服务器控件类似。不同之处在于它只在框中显示选定项,同时还显示下拉按钮。当用户单击此按钮时,将显示项的列表。修改 DropDownList 控件的外观 可以通过以像素为单位设置 DropDownList 控件的高度...
asp.net中用datatable给dropdownlist绑定数据DropDownList.DataSource = dt;//指定数据
asp.net中 listbox与dropdownlist联用的问题,100求解。//绑定到DropDownList1的数据,改为从数据库读取 this.DropDownList1.DataSource = dt;this.DropDownList1.DataTextField = "a";this.DropDownList1.DataValueField = "b";this.DropDownList1.DataBind();} } protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e){ DataTable dt...
在C#.NET中,根据登录人员的身份不同(dropdownlist提供选择),分别进入...判断三次。判断你Combox控件里的值是哪个?如果是 Teacher 就跳转到Teacher窗体。下面的同上。。。等等,,,最好用switch 或if都可以。
Asp.net中dropdownlist无法显示items里//需要注意的是DropDownList1.Items.Value只有在你有设置的情况下才有的 ,如下设置 DropDownList1.Items.Add(new ListItem("显示值", "1")); string itemValue = DropDownList1.SelectedItem.Value;希望你学习的快乐呀!!
Asp.net中把dropdownlist的选中项的值传给textbox方法1:参考这篇文章:http://bbs.csdn.net/topics/110132331 方法2:可以采用js window.onload = function () { document.getElementById("DropDownList1").onchange = function () { var val = this.value;document.getElementById("TextBox1").value = val;};};...
asp.net中如何让dropdownlist在母版页中保值Session["keyWord"] = Values 以 键/值 的形式 保存 其中 (keyword是键,Values是值)后台代码: dropdownlist.dataSource = ds.Tables[0]; 想把ds.Tables[0] 保存下来,比如 保存 : Session["dt"] = ds.Tables[0];使用: DataTable dt = Session["dt"] as DataTable ;...
关于Repeater 中的DropDownList ,取值问题?求好心人解答!DropDownList ddlList = e.Item.FindControl("ddlList") as DropDownList;//找到里层的DropDownList对象 string sel = ddlList.SelectedValue;sel就是这一行的下拉框选中的值,此时可以用一个全局的List存储下。最后执行完后,List里村的就是所有选中的值 Repeater rep = e.Item.FindControl("rptSubEval...