update sql column using a hyperlink in asp.net

孤街浪徒 提交于 2019-12-25 19:02:12

问题


I have an sql datasource inner joined with 2 tables (product table[product quantity column] and customer product table[ProductID,CustomerID,TotalProducts, UpdatedProducts])

Currently i have this code behind using a sql button:

using (SqlConnection scn = new SqlConnection("Data Source = 'PAULO'; Initial Catalog=ShoppingCartDB;Integrated Security =True"))
        {
            scn.Open();
            SqlCommand cmd = new SqlCommand("update o set o.Updatedproduct = p.ProductQuantity - o.Totalproduct from CustomerProducts o inner join Products p on o.ProductID = p.ProductID", scn);
            cmd.ExecuteNonQuery();
        }

though it works fine and upon button click, it updates all the fields in the updated products column but what i want to do is to do the same functionality but with a hyperlink. Also, it will only update a specific field. Here is an image to make it clearer:

UPDATE: so far i got this. html:

   <asp:TemplateField>
            <ItemTemplate>
                <asp:LinkButton ID="btnApprove" runat="server" Text="Approve" CommandName="UpdateProduct" CommandArgument='<%#Eval("CustomerID")+","+ Eval("ProductID") %>' />
            </ItemTemplate>
        </asp:TemplateField>

code behind:

 protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        if (e.CommandName == "Approve")
        {
            using (SqlConnection scn = new SqlConnection("Data Source = 'PAULO'; Initial Catalog=ShoppingCartDB;Integrated Security =True"))
            {
                scn.Open();
                SqlCommand cmd = new SqlCommand("update o set o.Updatedproduct = p.ProductQuantity - o.Totalproduct from CustomerProducts o inner join Products p on o.ProductID = p.ProductID WHERE WHERE ProductID=@ProductID", scn);
                cmd.Parameters.AddWithValue("@ProductID", ID);
                cmd.ExecuteNonQuery();
            }
        }
    }

nothings happening here


回答1:


Here is a complete example.Hope it helps you:

.ASPX:

 <asp:GridView ID="GridView1" runat="server" OnRowCommand="GridView1_RowCommand" AutoGenerateColumns="false">
        <Columns>
            <asp:BoundField DataField="CustomerID" />
            <asp:BoundField DataField="ProductID" />
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:LinkButton ID="btnApprove" runat="server" Text="Approve" CommandName="UpdateProduct" CommandArgument='<%#Eval("CustomerID")+","+ Eval("ProductID") %>' />
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>

Code behind:

  public partial class GridViewRowCommandExample : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if(!Page.IsPostBack)
            {
                var p1 = new Product { CustomerID = 1, ProductID = 11 };
                var p2 = new Product { CustomerID = 2, ProductID = 22 };

                GridView1.DataSource = new List<Product> { p1, p2 };
                GridView1.DataBind();
            }
        }

        protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            if (e.CommandName == "UpdateProduct")
            {
                string[] parameters = e.CommandArgument.ToString().Split(',');
                int customerID = Int32.Parse(parameters[0]);
                int productID = Int32.Parse(parameters[1]);
                //Now that you know which row to update run the SQL update statement 
            }
        }
    }

    public class Product
    {
        public int CustomerID { get; set; }
        public int ProductID { get; set; }
    }



回答2:


First put a button field with "ButtonFieldName" in GridView control and then try GridView Control's RowCommand event.

protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.CommandName == "ButtonFieldName")
    {
       // Your Logic goes here
    }
}


来源:https://stackoverflow.com/questions/38028834/update-sql-column-using-a-hyperlink-in-asp-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!