我编写了一个用于在表中插入值的存储过程。请参阅SP以供参考: -
ALTER PROCEDURE [dbo].[AddingpagesinGrid] (@page_title NVARCHAR(100),
@page_description NVARCHAR(max),
@meta_title NVARCHAR(255),
@meta_keywords NVARCHAR(255),
@meta_description NVARCHAR(1000),
@Active BIT)
AS 开始 SET nocount ON;
BEGIN
INSERT INTO [tbl_pages]
([page_title],
[page_description],
[meta_title],
[meta_keywords],
[meta_description],
[active])
VALUES ( @page_title,
@page_description,
@meta_title,
@meta_keywords,
@meta_description,
@Active)
END
SELECT [page_title],
[page_description],
[meta_title],
[meta_keywords],
[meta_description],
[active]
FROM tbl_pages
结束
去
另见代码隐藏: -
protected void btnAdd_Click(object sender, EventArgs e)
{
conn.Open();
var cmd = new SqlCommand("AddingPagesInGrid", conn);
cmd.Parameters.AddWithValue("@page_title", txtPageTitle.Text);
cmd.Parameters.AddWithValue("@page_description", txtPagedesc.Text);
cmd.Parameters.AddWithValue("@meta_title", txtmetatitle.Text);
cmd.Parameters.AddWithValue("@meta_keywords", txtMetakeywords.Text);
cmd.Parameters.AddWithValue("@meta_description", ddlActiveInactive.SelectedIndex);
cmd.ExecuteNonQuery();
conn.Close();
ScriptManager.RegisterStartupScript(this, this.GetType(), "alert", "alert('User details saved sucessfully');window.location ='csrpage.aspx';", true);
}
它不起作用并且给我错误
" 程序或功能' AddingPagesInGrid'需要参数' @ page_title',这是未提供的。"
答案 0 :(得分:1)
我认为您忘记设置CommandType
property,并且您的计划认为您的"AddingPagesInGrid"
为Text
,这是CommandType
的默认值。
添加;
cmd.CommandType = CommandType.StoredProcedure;
并使用using
statement处理您的SqlConnection
和SqlCommand
。
using(SqlConnection conn = new SqlConnection(conString))
using(SqlCommand cmd = conn.CreateCommand())
{
}
请不要使用AddWithValue
方法。有时可能会产生意外结果。使用.Add
方法或它的重载。