Click here to Skip to main content
15,915,094 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
On click of view button in an repeater i want to open another page as popup....Also, i have to pass value f selected row id to popup window...
Posted
Comments
Sandeep Mewara 30-Aug-12 2:08am    
And... ?

What have you tried so far? Where are you stuck?

Use thickbox or someother for popup

XML
<asp:Repeater>
<ItemTemplate>
<a href="/targetpage.aspx?id=<%#Eval("ID") %>&height=320&width=500" class="thickbox"> Sometext </a>
</ItemTemplate>
</asp:Repeater>
 
Share this answer
 
Hi,
Try this:
ASP.NET
<asp:hyperlink id="LinkButton3" navigateurl='<%# "Default3.aspx?ID=" + Eval("ID")%>' text="View" runat="server"/> 



--Amit
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900