用ASP怎么让HTML控件中的下拉菜单怎么从数据库获取数据
发布网友
发布时间:2022-04-07 17:59
我来回答
共4个回答
懂视网
时间:2022-04-07 22:20
4.里面的FlowLayoutPanel,设置它Dock=Top,AutoSize=true
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using data;
using dataDA;
namespace pp
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
LD();
}
private void LD()
{
List<CarData> list = new CarDA().Select();
foreach (CarData data in list)
{
CheckBox cb = new CheckBox();
cb.Text = data.Name;
cb.Tag = data.Code;
cb.Width = 200;
flowLayoutPanel1.Controls.Add(cb);
}
}
}
}
代码添加控件-从数据库提取数据
标签:
热心网友
时间:2022-04-07 19:28
<select name=" ">
<%for n=1 to rs.recordcount%>
<option value=""><%=rs("要从数据库中提取的数据的字段")%></option>
<%next%>
</select>
有两个地方需要注意:
其中<option value="">这里的引号内放置你设定不同菜单对应的值,
再者,<%=rs("要从数据库中提取的数据的字段")%>,这句就是满足从数据库获取数据的代码。
热心网友
时间:2022-04-07 20:46
<%
set rst=server.CreateObject("adodb.recordset")
sqlt="select * from study_fl order by fl_id desc"
rst.open sqlt,conn,1,1
%>
<select name="f_fl" size="1" id="select" style="width:100px; ">
<%
while not rst.eof
%>
<option value="<%=rst("fl_id")%>"><%=rst("fl_name")%></option>
<%
rst.movenext
wend
%>
</select>
热心网友
时间:2022-04-07 22:21
楼上已经很清楚了