我在我的网页上设计.我的代码如下.
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