This sounds roughly equivalent to sending a table with two columns:
table Employees
.No
.Name
In SQL 2008 you can use a table type parameter to pass this sort of data, but I don't believe this is available in Sql 05.
If you're using .NET, you can use the SqlBulkCopy class to send a batch of records.
If none of these work, you may have to execute a single stored procedure per row (per employee in this case). This is assuming that this data needs to wind up in a table, as opposed to attempting to parse or reformat the data on the SQL server. If the latter is the case, you should really perform such operations on the client instead of the database server.