hai semua
ini adalah kode di halaman details,
protected void Page_Load(object sender, EventArgs e)
{
if (this.Page.PreviousPage != null)
{
int typeId = int.Parse(Request.QueryString["TypeId"]);
GridView GridView1 = (GridView)this.Page.PreviousPage.FindControl("GridView1");
GridViewRow row = GridView1.Rows[typeId];
lbljudul.Text = row.Cells[0].Text;
lblisii.Text = (row.FindControl("lblisi") as Label).Text.ToString();
lbljudul.Text = (row.FindControl("lbljudul") as Label).Text.ToString();
// lbljudul.Text = row.Cells[1].Text;
}
}
I want it in gantai gridvew into the ListView.