早教吧作业答案频道 -->其他-->
if(dt.Rows.Count>0)求注释求每行代码的注释,protectedvoidInitData(){stringid=Request["ID"].ToString();try{stringsql="select*fromTBMeiShiwhereID="+id;DataTabledt=DBHelper.GetDataSet(sql).Tables[0];//执行sql语句从数
题目详情
if (dt.Rows.Count > 0)求注释
求每行代码的注释,
protected void InitData()
{
string id = Request["ID"].ToString();
try
{
string sql = "select * from TB_MeiShi where ID=" + id;
DataTable dt = DBHelper.GetDataSet(sql).Tables[0];//执行sql语句从数据库中读取数据并填充在dt
if (dt.Rows.Count > 0)//判断dt里的数据个数是否大于0
{
this.TextBox1.Text = dt.Rows[0]["MingCheng"].ToString();
this.DropDownList1.Text = dt.Rows[0]["CaiXi"].ToString();
this.WebEditor1.Text = dt.Rows[0]["JieShao"].ToString();
}
}
catch
{
}
}
求每行代码的注释,
protected void InitData()
{
string id = Request["ID"].ToString();
try
{
string sql = "select * from TB_MeiShi where ID=" + id;
DataTable dt = DBHelper.GetDataSet(sql).Tables[0];//执行sql语句从数据库中读取数据并填充在dt
if (dt.Rows.Count > 0)//判断dt里的数据个数是否大于0
{
this.TextBox1.Text = dt.Rows[0]["MingCheng"].ToString();
this.DropDownList1.Text = dt.Rows[0]["CaiXi"].ToString();
this.WebEditor1.Text = dt.Rows[0]["JieShao"].ToString();
}
}
catch
{
}
}
▼优质解答
答案和解析
string id = Request["ID"].ToString(); //页面传递来的id参数
try
{
string sql = "select * from TB_MeiShi where ID=" + id; // 数据库查询语句 .
DataTable dt = DBHelper.GetDataSet(sql).Tables[0];//执行sql语句从数据库中读取数据并填充在dt
if (dt.Rows.Count > 0)//dt里有数据,则进行数据填充
{
this.TextBox1.Text = dt.Rows[0]["MingCheng"].ToString(); 查询结果的第一行的MingCheng赋值给textbox1
this.DropDownList1.Text = dt.Rows[0]["CaiXi"].ToString();
this.WebEditor1.Text = dt.Rows[0]["JieShao"].ToString();
}
}
try
{
string sql = "select * from TB_MeiShi where ID=" + id; // 数据库查询语句 .
DataTable dt = DBHelper.GetDataSet(sql).Tables[0];//执行sql语句从数据库中读取数据并填充在dt
if (dt.Rows.Count > 0)//dt里有数据,则进行数据填充
{
this.TextBox1.Text = dt.Rows[0]["MingCheng"].ToString(); 查询结果的第一行的MingCheng赋值给textbox1
this.DropDownList1.Text = dt.Rows[0]["CaiXi"].ToString();
this.WebEditor1.Text = dt.Rows[0]["JieShao"].ToString();
}
}
看了 if(dt.Rows.Cou...的网友还看了以下:
if(dt.Rows.Count>0)求注释求每行代码的注释,protectedvoidInitD 2020-05-17 …
publicDataTableExecuteQuery(stringsql)这段话具体意思?pub 2020-05-17 …