SqlCommand myCommand = new SqlCommand("edu_news ",myConnection);
myCommand.CommandType =CommandType.StoredProcedure; 
myCommand.CommandText ="edu_news";
myCommand.Parameters.Add("@bigclassid ",SqlDbType.Int,4);
myCommand.Parameters.Add("@smallclassid ",SqlDbType.Int,4);
myCommand.Parameters["@bigclassid "].Value=a;
myCommand.Parameters["@smallclassid "].Value=b;