如何更正此ASP.NET错误

我在我的网页上设计.我的代码如下.
using System;
  using System.Collections;
  using System.Configuration;
  using System.Data;
  using System.Linq;
  using System.Web;
  using System.Web.Security;
  using System.Web.UI;
  using System.Web.UI.HtmlControls;
  using System.Web.UI.WebControls;
  using System.Web.UI.WebControls.WebParts;
  using System.Xml.Linq;
  using System.Data.SqlClient;

  namespace photoshops
  {
      public partial class WebForm1 : System.Web.UI.Page
      {
          protected void Page_Load(object sender,EventArgs e)
          {

          }

          protected void Button1_Click(object sender,EventArgs e)
          {
              SqlDataAdapter da = new SqlDataAdapter();
              SqlConnection cnn = new SqlConnection();
              DataSet ds = new DataSet();
              string constr = null;
              SqlCommand cmd = new SqlCommand();
              if (IsValid != null)
              {
                  constr = @"Data Source=DEVI\SQLEXPRESS; Initial Catalog =librarymanagement;
                     Integrated Security=SSPI";
                  cnn.ConnectionString = constr;
                  try
                  {
                      if (cnn.State != ConnectionState.Open)
                          cnn.Open();
                  }
                  catch (Exception ex)
                  {
                      string str1 = null;
                      str1 = ex.ToString();
                  }
                  cmd.Connection = cnn;
                  cmd.CommandType = CommandType.StoredProcedure;
                  cmd.CommandText = "photoset";
                  cmd.Parameters.Clear();
                  cmd.Parameters.AddWithValue("@BillNo",TextBox1.Text);
                  cmd.Parameters.AddWithValue("@CustomerName",TextBox2.Text);
                  cmd.Parameters.AddWithValue("@Address",TextBox3.Text);
                  cmd.Parameters.AddWithValue("@StartDate",Rdbsdate.SelectedDate );
                  cmd.Parameters.AddWithValue("@EndDate",Rdbddate.SelectedDate );
                  SqlParameter param0 = new SqlParameter("@Systemurl",SqlDbType.VarChar,50);
                  cmd.Parameters.AddWithValue("@Numberofcopies",TextBox7.Text);
                  cmd.Parameters.AddWithValue("@Amount",TextBox8.Text);
                  cmd.Parameters.AddWithValue("@Total",TextBox9.Text);
                  da.SelectCommand = cmd;
                  try
                  {
                      da.Fill(ds);
                  }
                  catch (Exception ex)
                  {
                      string strErrMsg = ex.Message;
                      //throw new applicationException("!!!! An error an occured while
                      //inserting record."+ex.Message)
                  }
                  finally
                  {
                      da.Dispose();
                      cmd.Dispose();
                      cnn.Close();
                      cnn.Dispose();
                  }
                  if (ds.Tables[0].Rows.Count > 0)
                  {
                      Msg.Text = "Photo setting sucessfullY";
                  }
                  else
                  {
                      Msg.Text = "photosetting failled";
                  }
              }
          }
      }
  }

MY ERROR
image are not insert how to change in my code pls send me code
How to rectify.

我的存储过程,

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
 GO

ALTER PROCEDURE [dbo].[photoset]
(
    @BillNo Numeric,@CustomerName varchar(300),@Address nvarchar(300),@StartDate datetime,@EndDate datetime,@Systemurl varchar,@Numberofcopies numeric,@Amount numeric,@Total numeric
)

AS
BEGIN
    insert into tblphotosetting
    (
      BillNo,CustomerName,Address,StartDate,EndDate,Systemurl,Numberofcopies,Amount,Total
    )
    values
    (
      @BillNo,@CustomerName,@Address,@StartDate,@EndDate,@Systemurl,@Numberofcopies,@Amount,@Total
    )
END

解决方法

在IF条件之前添加另一个条件,以检查数据集中是否有任何表.如果存储过程没有返回任何表,这将避免错误.
if(ds.Tables.Count > 0)
{ 
   if (ds.Tables[0].Rows.Count > 0)
   {
      Msg.Text = "Photo setting sucessfullY";
   }
   else
   {
      Msg.Text = "photosetting failled";
   }
}

编辑 –

看到存储过程后,只有一个insert语句.除非您编写一些select语句以在存储过程中获得一些结果集,否则您无法用表填充数据集.

相关文章

引言 本文从Linux小白的视角, 在CentOS 7.x服务器上搭建一个...
引言: 多线程编程/异步编程非常复杂,有很多概念和工具需要...
一. 宏观概念 ASP.NET Core Middleware是在应用程序处理管道...
背景 在.Net和C#中运行异步代码相当简单,因为我们有时候需要...
HTTP基本认证 在HTTP中,HTTP基本认证(Basic Authenticatio...
1.Linq 执行多列排序 OrderBy的意义是按照指定顺序排序,连续...