Hi!

I am working on an application. I am using ASP.net with VB.Net as code behind.

I am coding in the code behind page to display some links (the text of which comes from the table).

heres the code,

VB Code:
  1. Dim r As TableRow
  2.        Dim c As TableCell
  3.        Dim Hyp As HyperLink
  4.  
  5.                 c = New TableCell
  6.                 Hyp = New HyperLink
  7.                 Hyp.NavigateUrl = "Address.aspx?OmniId=" & OmniId & "&SubOffId= " & SubOffID
  8.                 Hyp.Text = Address
  9.                 c.Controls.Add(Hyp)
  10.                 r.Cells.Add(c)
  11.  
  12.                 tblDetails.Rows.Add(r)
  13.             Next j
  14.         End If
  15.         '**************************************
See that I am making hyperlink with the code:
VB Code:
  1. Hyp = New HyperLink
  2.                 Hyp.NavigateUrl = "Details.aspx?OmniId=" & OmniId & "&SubOffId= " & SubOffID
  3.                 Hyp.Text = Address

But, I want to open the subsequent page as a popup (Details.aspx). How to achieve that??