Hello
I looking for solution in my problem, I want Double Click Record in ej.Grid (ASP.NET), using C# method redirect to Edit page, Where will i edit this record.
Info about record i want save in Session. Some like bellow. This code is from asp:grid
Session["PageUrl"] = HttpContext.Current.Request.Url;
Session["RiD"] = GridView1.SelectedDataKey.Value.ToString();
Response.Redirect("~/Reservas/Edit.aspx");
I find many "years ago :)" some like this, with litle modification i want retrive "ID" of the record and send with session to edit page
Dictionary<string, object> data = e.Arguments["data"] as Dictionary<string, object>;
var RIndx = data.Where(d => d.Key == "Rid").Select(d => d.Value).FirstOrDefault();
Session["RiD"] = e.Arguments["Rid"].ToString();
L9.Text = RIndx.ToString();
//Response.Redirect("~/Reservas/Edit.aspx");
Thanks a lot
Tomasz