gpt4 book ai didi

c# - 如何将 asp.net 下拉选择项作为输入传递给 c# 中的存储过程?

转载 作者:太空宇宙 更新时间:2023-11-03 13:55:59 25 4
gpt4 key购买 nike

这是我正在使用的代码。我想将下拉选择的项目作为输入传递给存储过程并执行它。我该如何实现?

public class DaysForEvents
{
public DataSet GetDaysForEvents(//This should be my input to stored procedure (i.e) dropdownselected value)
{
SqlConnection con = new SqlConnection(CommonSettings.GetEventsConnectionString());

try
{
SqlCommand sqlcmd = new SqlCommand("proc_fetch_event_days", con);
SqlDataAdapter sqlda = new SqlDataAdapter(sqlcmd);
DataSet ds = new DataSet();
//DateFilter = 0;
//StatusFilter = 0;

sqlcmd.CommandType = CommandType.StoredProcedure;

sqlcmd.Parameters.AddWithValue("@event_id", Event_id);
// sqlcmd.Parameters["@UserID"].Value = UserID;


con.Open();
sqlda.Fill(ds);
con.Close();

return ds;


}

最佳答案

据我了解,您想要这个。

//get dropdown selected value and store in a variable 
var eventId = dropdown.SelectedValue;

//pass this variable in the GetDaysForEvents method to get DataSet.
var dataSet = GetDaysForEvents(eventId);

关于c# - 如何将 asp.net 下拉选择项作为输入传递给 c# 中的存储过程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12155999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com