Hi all,
I am not sure what's wrong with this block of code:
protected void FillDataGridView(string timeStamp)
{
string select = "exec Uds.Dashboard_GetJobs";
string connectionString = WebConfigurationManager.ConnectionStrings["UctConnectionString"].ConnectionString;
SqlDataSource sourceRealtimeLogging = new SqlDataSource(connectionString, select);
SqlCommand cmd = new SqlCommand();
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add(new SqlParameter("@date", SqlDbType.DateTime));
View Complete Post