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,
See that I am making hyperlink with the code:VB Code:
Dim r As TableRow Dim c As TableCell Dim Hyp As HyperLink c = New TableCell Hyp = New HyperLink Hyp.NavigateUrl = "Address.aspx?OmniId=" & OmniId & "&SubOffId= " & SubOffID Hyp.Text = Address c.Controls.Add(Hyp) r.Cells.Add(c) tblDetails.Rows.Add(r) Next j End If '**************************************
VB Code:
Hyp = New HyperLink Hyp.NavigateUrl = "Details.aspx?OmniId=" & OmniId & "&SubOffId= " & SubOffID Hyp.Text = Address
But, I want to open the subsequent page as a popup (Details.aspx). How to achieve that??




Reply With Quote