How To Pass DataTable Values To Another DataTable Using Session in Asp.Net C# No comments categories: Asp.Net, C#, DataTable, Session Share This: Facebook Twitter Google+ Stumble Digg C# CODING DataTable dt = new DataTable(); Session["Details"] = dt; DataTable dt1 = (DataTable)Session["Details"]; GridView2.DataSource = dt1; GridView2.DataBind(); Email ThisBlogThis!Share to TwitterShare to Facebook
0 comments:
Post a Comment