Click here to Skip to main content
15,912,756 members

Comments by charan anasam (Top 4 by date)

charan anasam 6-Aug-12 2:48am View    
Deleted
for beginners like me guys like you should give a push of solving things..which we don't get understood with some topics....
charan anasam 3-Aug-12 8:34am View    
Deleted
after googling itself placed question here!anyway what you suggested is really great better to keep on updating it on every post then you will be a platinum member!!
charan anasam 24-Jul-12 4:13am View    
before beginning my question i told that i'm new to this,if u know any solution guiding is better rather than questioning again?
charan anasam 24-Jul-12 4:02am View    
Deleted
here is my code:
DAL:
public DataSet UserDetailGrid(BEL.BEL objBELUserDetailGrid)
{
con.Open();
SqlCommand cmd = new SqlCommand("Usp_GridUserDetails", con);
cmd.CommandType = CommandType.StoredProcedure;
try
{
DataSet ds = new DataSet();
cmd.Parameters.AddWithValue("@UserName", objBELUserDetailGrid.UserNam);
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(ds);
con.Close();
return ds;
}
catch (Exception ex)
{
throw ex;
return null;
}
finally
{
cmd.Dispose();
con.Close();
con.Dispose();
}
}
BLL:
public DataSet UserGridDetail(BEL.BEL objUserDetails)
{
DAL.DAL UDGrid = new DAL.DAL();
DataSet ds = UDGrid.UserDetailGrid(objUserDetails);
return ds;
}
InCodeBehind:
protected void BtnDetails_Submit_Click(object sender, EventArgs e)
{
Grd_Details.Visible = true;
BL.BLL objgridviewdetail = new BL.BLL();
BEL.BEL objGUDBEL = new BEL.BEL();
objGUDBEL.UserNam = TxtDetails_UserName.Text;

DataSet ds = objgridviewdetail.UserGridDetail(objGUDBEL);
Grd_Details.DataSource = ds;
Grd_Details.DataBind();
}