da vb.net non ne ho idea cmq puoi farlo da Js, ma non so se ti butto fuori strada
ti prepari una funzione tipo questa (non l'ho testata):
codice:
function openWin(richiesta)
if (typeof(objPopup) =="undefined"))
{
var ObjPopup = window.open('popRichiesteinCorso.aspx?Richiesta=" & richiesta& "','popup','height=500, width=670, scrollbars=yes,resizable=yes ')
ObjPopup.focus()
}
else
{
// è gia' stato aperto, e il popup è identificato dall'oggeto ObjPopup
}
da apsx
nkId.Attributes.Add("onclick", "openWin(" & Richiesta & ")")