0

Need a advise. I have a page, main.aspx page. I need to add a link to the main.aspx page. So that when employees clicks on the link, I have to show the employee profile (profile.aspx) page as a pop up. In order to do this can I use link button. I am working on .NET version 1.1. when I use link button I could not find the postbackurl.

Tim Schmelter
  • 450,073
  • 74
  • 686
  • 939
user993935
  • 3,563
  • 4
  • 18
  • 15

1 Answers1

0

You need to set the NavigateUrl of your link button to the profile page, and set the Target to "_blank".

Or as @Anders suggested, use jQuery to display a flowing "in-page" window.

Sam Axe
  • 33,313
  • 9
  • 55
  • 89