0
try
{
string str = ConfigurationManager.ConnectionStrings["e_con_connection"].ConnectionString;
SqlConnection con = new SqlConnection(str);
SqlCommand cmd = new SqlCommand("GetProduct",con);
cmd.CommandType = System.Data.CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@ProductId", productid);
SqlDataAdapter da = new SqlDataAdapter();
DataSet ds = new DataSet();
da.Fill(ds);
}
catch (Exception e)
{
//throw new Exception(message.ex);
HttpContext.Current.Response.Redirect("~/Error.aspx?err=" + e.Message);
}
return ds;
我上面寫我的代碼,但顯示這個錯誤,每當我使用相同的代碼,而不試圖追趕其工作的高度名稱DS會在內容不會退出嘗試捕捉
名稱DS不會在內容出口