(Q2 2009)
Hi, my new issue is, how can i show a popup window from my hyperlinks of my radgrid, i'm triying to call another aspx but in a popup window. thanks
Regards Gino.
Hi, my new issue is, how can i show a popup window from my hyperlinks of my radgrid, i'm triying to call another aspx but in a popup window. thanks
| protected void tk_Grid_ItemDataBound(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridDataItem) |
| { |
| GridDataItem dataItem = (GridDataItem)e.Item; |
| HyperLink h1 = new HyperLink(); |
| h1.NavigateUrl = "frmAnexoBalance.aspx?Periodo=APERTURA&MesID=0&TCID=0&GGPPID=" + dataItem["FormatoGananciaPerdidaID"].Text.Trim() + "&FBID=0"; |
| //h1.Target= "blank"; |
| h1.Text = dataItem.GetDataKeyValue("Apertura").ToString(); |
| h1.CssClass = "gridtext"; |
| dataItem["Apertura"].Controls.Add(h1); |
Regards Gino.