I have tried using the LinkButton and use the click event to save the information to the database. Response.redirect redirects the entire page, which I do not want to do. It seems like I would have to use some javascript to open a new window at that point, but I haven't been able to come up with the javascript to put in my click event of the linkbutton...and I fear at that point the popup box would appear.
Main Topics
Browse All Topics





by: DotNetThinkerPosted on 2007-06-14 at 13:31:48ID: 19286904
If you want to capture data about the link the user clicked you should think about using a control with a Click() event. That way you can grab the data you need and do a Response.Redirect to the appropriate page. I'll have to look into the popup issue.