本文介绍了Sql编码说明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

逐行解释下面附带的代码:



Explain below attached code line by line:

public void BindData() 
{ 
SqlCommand cmd; 
cmd = new SqlCommand("sp_GetEmployeeDetails", con); 
cmd.CommandType = CommandType.StoredProcedure; 
cmd.Parameters.Add(new SqlParameter("@roll", SqlDbType.VarChar)).Value = DropDownList1.SelectedValue; 
cmd.Parameters.Add(new SqlParameter("@Name", SqlDbType.VarChar)).Value = TextBox1.Text; 

con.Open(); 
SqlDataAdapter da = new SqlDataAdapter(cmd); 

DataTable dt = new DataTable("Table"); 
da.Fill(dt); 
con.Close(); 
GridView1.DataSource = dt; 
GridView1.DataBind(); 

}

推荐答案


这篇关于Sql编码说明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 09:50