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.
Asked
Active
Viewed 654 times
0
-
2dotnet version 1.1? really? Your best bet is jquery I don't think ajax would help.. – Andres Dec 12 '11 at 17:19
1 Answers
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