4
Answers

displaying a datagridview cell value in one form in another datagridview cell in another form

ullas K

ullas K

12y
4.4k
1
I am developing a billing system for a store.I have a form1 in which there are two texyboxes and a datagridview.Cardno is enetered in textbox1 and it fetches the name of the customer and checks whether this customer has made purchase for this month and the datagridview is focussed.
Datagridview1 has the following columns

Sl.No
Product No
Product Name
Rate
Qty
Amount

what i need is when i press a enter key in product no column in datagridview1 a datagridview2 showing all the products and product code is loaded in form2.I can select the product code from there.Upto here i was able to do

Now what i want is when i select the product code in datagridview2 in form2 that product code is to be displayed in datagridview1 product code column and depending upon that the product name and rate columns  should be populated on datagridview1 .How can i do this.I do not want the form1 to reload with the form2 values  because i already have the text box values displayed in form1

Pls help and thanks in advance
Answers (4)
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
The issue is in Admission.aspx.cs page, you have the below code.
protected void GridView1_SelectedIndexChanged1(object sender, EventArgs e)
    {
        string value1 = GridView1.SelectedRow.Cells[4].Text;
        string value2 = GridView1.SelectedRow.Cells[5].Text;
        //Label1.Text = value1;
        //Label1.Text = Session["tm"].ToString();
        Session["prgfee"] = GridView1.SelectedRow.Cells[6].Text;
        //Label1.Text = Session["prgfee"].ToString();
        if (Convert.ToInt32(value1) <= Convert.ToInt32(Session["tm"]))
        {
            obj.Save_Rec(objprp);
            Response.Redirect("~/confirm.aspx");
        }


You are not setting objprp to some value. Before that You are setting

 nsadm.clsstadmdetprp objprp = new nsadm.clsstadmdetprp();
so all the columns in the objprp will be set to 0 if its int. In your case usercode is int, so it sets null.this save method tries to save with userid as 0, but there are no records for userid in tb_usr table for value 0. So throwing error "foreign key conflict"
Get the user details in session and set to objprp in admission.aspx page
0
Chakshu Jindal

Chakshu Jindal

NA 23 12.6k 12y
ya sure, i have shared the code, you can check it

basically what i am doing here is,

student will register first(register.aspx) (table tb_usr gets the value when user registers), than after his successful registration, he will be redirected to the page(admission.aspx) where he can take admission in a particular programme,and when he opt to take admission, error occurs that i asked for.
0
Chakshu Jindal

Chakshu Jindal

NA 23 12.6k 12y
yes, that particular user has record in user table.
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
I meant the user code which you are trying to save in admission table. Does that particular user has a record in user table?
0
Chakshu Jindal

Chakshu Jindal

NA 23 12.6k 12y
yes, usrcod do exist in table tb_usr
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
this is because the column usercode which you are passing and trying to save is not present in table User.

Check whether the usercode exists in tb_Usr