Click here to Skip to main content
16,023,339 members

Comments by jshaliny (Top 1 by date)

jshaliny 18-Nov-10 7:31am View    
There are two link button.popup and photo

<a href="remote.html" rel="facebox">popup</a>
Collapse
<asp:linkbutton id="lnkphoto" runat="server" text="Photo" onclick="lnkphoto_click" xmlns:asp="#unknown">br mode="hold" />
Collapse
protected void lnkphoto_click(object sender, EventArgs e)
{
Response.Redirect("ViewPhoto.aspx");
}


I have clicked on popup link. 'remote.html' page open like Facebox popup window

Then I have Clicked on Photo link.'remote.html page open in new page.

lnkphoto click event is not firing. If I have use on hyperlink is working fine

Collapse

My problem is after click on popup, server side function is not working.