Update data table on ASMX Service side
- by Paul
Hi, I need advice. On Web Service side a I hav this method :
public DataSet GetDs(string id)
{
SqlConnection conn = null;
SqlDataAdapter da = null;
DataSet ds;
try
{
string sql = "SELECT * FROM Tab1";
string connStr =…