当前位置:编程学习 > C#/ASP.NET >>

“VehicleBiz.DeleteVehicle(ids);”中的VehicleBiz是什么

   /// <summary>
    /// 删除该行
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
        try
        {
            string ids = this.GridView1.DataKeys[e.RowIndex].Value.ToString();
            VehicleBiz.DeleteVehicle(ids);
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message);
        }
        this.BindVehicle();
        Page.ClientScript.RegisterStartupScript(this.GetType(), "del", "alert('删除成功!');window.location='ManageVehicles.aspx';", true);

    }

看到这样一段代码, “VehicleBiz.DeleteVehicle(ids);”中的VehicleBiz是什么?
不好意思,本人刚了解点c#,很多都不懂。。。 --------------------编程问答-------------------- 我也是新手,会不会是你们公司的框架啊 --------------------编程问答-------------------- VehicleBiz是一个类估计是业务层,按F12进去看看啊
补充:.NET技术 ,  C#
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,