This is the code:
VB Code:
Dim r As TableRow Dim c As TableCell Dim Hyp As HyperLink c = New TableCell Hyp = New HyperLink Hyp.NavigateUrl = "Details.aspx?OmniId=" & OmniId & "&SubOffId= " & SubOffID Hyp.Text = Address c.Controls.Add(Hyp) r.Cells.Add(c) tblDetails.Rows.Add(r)
Hyp.NavigateUrl opens Details.aspx as another page. I want it as a pop up ( a new browser window).




Reply With Quote