how to add post article from database
please send the cod
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
AbedElHamid AlWahidyPosted Apr 10, 2016, 7:14 AM
{
SqlCommand _CmdSearch = new SqlCommand("Select * FROM WaiteApprove Where UserName =@UserName", _Conn);
_CmdSearch.Parameters.AddWithValue("@UserName", _UserName);
DataTable _DTable = new DataTable();
SqlDataAdapter _DAdapter = new SqlDataAdapter(_CmdSearch);
_DAdapter.Fill(_DTable);
GrdNewItem.DataSource = _DTable;
GrdNewItem.DataBind();
}
Upendra Pratap ShahiPosted Apr 8, 2016, 9:07 AM
dharmender kumarPosted Apr 8, 2016, 9:03 AM
Upendra Pratap ShahiPosted Apr 8, 2016, 8:51 AM