我们如何以两种不同的形式使用相同的数据网格值?
我有一个网格视图,其中显示了公共汽车列表及其起始位置和目的地以及旅行日期时间..
并且还有一个用户主页,用户在其中预订座位,并且在用户页面中我必须显示前面提到的数据网格视图的内容
我用了代码
public static string SetValueForText1 = "";
public static string SetValueForText2 = "";
public static string SetValueForText3 = "";
public static string SetValueForText4 = "";
public static string SetValueForText13 = "";
和
int i = gv_bus.SelectedCells[0].RowIndex;
SetValueForText16 = gv_bus.Rows[i].Cells[2].Value.ToString();
SetValueForText1 = gv_bus.Rows[i].Cells[3].Value.ToString();
SetValueForText2 = gv_bus.Rows[i].Cells[4].Value.ToString();
SetValueForText3 = gv_bus.Rows[i].Cells[5].Value.ToString();
SetValueForText4 = gv_bus.Rows[i].Cells[6].Value.ToString();
在用户主页中我使用了这段代码
lbl_startng1.Text =BUS_BOOKING.BUS_PAGE.SetValueForText1;
lbl_destination1.Text = BUS_BOOKING.BUS_PAGE.SetValueForText2;
lbl_trip1.Text = BUS_BOOKING.BUS_PAGE.SetValueForText3;
lbl_dur1.Text = BUS_BOOKING.BUS_PAGE.SetValueForText4;
lbl_no1.Text = BUS_BOOKING.BUS_PAGE.SetValueForText13;
但这不起作用,因为在我们调试时会加载用户页面并且它显示空标签
任何人请帮忙。提前致谢