How to sort a DataTable before passing on to DataGrid ASP.Net C# Code to Create Dynamic Tables
Oct 06
<%@ Page Language="C#" %>
<script runat="server">

void Page_Load(Object sender, EventArgs e)
{
string[] ids = {"2343","2344","2345"};
string idString = String.Join(",",ids);
Response.Write(idString);
}

</script>

Leave a Reply