コード例 #1
0
 protected void GridView2_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
 {
     GridView2.EditIndex = -1;
     SellDT = SellAdapter.Select_By_UID(Convert.ToInt32(Session["uid"].ToString()));
     GridView2.DataSource = SellDT;
     GridView2.DataBind();
 }
コード例 #2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (Page.IsPostBack == false)
        {
            UDT = UAdapter.Select_By_UID(Convert.ToInt32(Session["uid"].ToString()));
            HDT = HAdapter.Select_By_SNAME_BLOCKNO(UDT.Rows[0]["societyname"].ToString(), Convert.ToInt32(UDT.Rows[0]["Houseid"].ToString()));

            Image3.ImageUrl      = HDT.Rows[0]["image"].ToString();
            lblsname.Text        = HDT.Rows[0]["sname"].ToString();
            lblbno.Text          = HDT.Rows[0]["blockno"].ToString();
            lbltype.Text         = HDT.Rows[0]["type"].ToString();
            ViewState["HID"]     = HDT.Rows[0]["HID"].ToString();
            SellDT               = SellAdapter.Select_By_UID(Convert.ToInt32(Session["uid"].ToString()));
            GridView2.DataSource = SellDT;
            GridView2.DataBind();
            if (SellDT.Rows.Count == 1)
            {
                lblrent.Text = SellDT.Rows[0]["sell"].ToString();
            }
            else
            {
                lblrent.Text = "--";
            }
        }
    }
コード例 #3
0
    protected void GridView2_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
        int sid = Convert.ToInt32(GridView2.DataKeys[e.RowIndex].Value);

        SellAdapter.Delete(sid);

        SellDT = SellAdapter.Select_By_UID(Convert.ToInt32(Session["uid"].ToString()));
        GridView2.DataSource = SellDT;
        GridView2.DataBind();
        lblrent.Text = "--";
    }
コード例 #4
0
    protected void GridView2_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
        int     sid  = Convert.ToInt32(GridView2.DataKeys[e.RowIndex].Value);
        TextBox lblr = GridView2.Rows[e.RowIndex].FindControl("txtr") as TextBox;

        SellAdapter.SELL_UPDATE_SELL(sid, Convert.ToDouble(lblr.Text));
        GridView2.EditIndex = -1;
        SellDT = SellAdapter.Select_By_UID(Convert.ToInt32(Session["uid"].ToString()));
        GridView2.DataSource = SellDT;
        GridView2.DataBind();
        if (SellDT.Rows.Count == 1)
        {
            lblrent.Text = SellDT.Rows[0]["sell"].ToString();
        }
        else
        {
            lblrent.Text = "--";
        }
    }
コード例 #5
0
    protected void btnsellnow_Click(object sender, EventArgs e)
    {
        if (txtsell.Text == "")
        {
            lblsell.Text = "Enter sell price";
        }
        else
        {
            SellDT = SellAdapter.Select_By_UID(Convert.ToInt32(Session["uid"].ToString()));

            if (SellDT.Rows.Count > 0)
            {
                lblsell.Text = "Sell Request Already Sent.";
            }
            else
            {
                SellAdapter.Insert(Convert.ToInt32(ViewState["HID"].ToString()), lblsname.Text, Convert.ToInt32(Session["uid"].ToString()), Convert.ToDouble(txtsell.Text));
                txtsell.Visible    = false;
                btnsellnow.Visible = false;
                txtsell.Text       = "";
                lblsell.Text       = "Sell Request Successfully";
            }
        }
    }