Hi, should I use the data components like SqlDataSource/ObjectDataSourc e? Or
using coding by hands like below?
Page_Load:
ds = SqlHelper.Execu teDataset(conne ctionString, CommandType.Sto redProcedure,
"sp_eris_wilbor _pedido_consult a", arParms);
grd.DataSource = ds;
grd.DataBind();
Any pros/cons using one over other? What you suggest?
Thanks
VS 2005 asp.net 2.0 C#
using coding by hands like below?
Page_Load:
ds = SqlHelper.Execu teDataset(conne ctionString, CommandType.Sto redProcedure,
"sp_eris_wilbor _pedido_consult a", arParms);
grd.DataSource = ds;
grd.DataBind();
Any pros/cons using one over other? What you suggest?
Thanks
VS 2005 asp.net 2.0 C#
Comment