navigating to a new url via web forms button

SymnKnotoussy

New Member
Here'w what I have. A simple framset with a search page in the lefthand frame and the result page in the righthand frame. The Search button is an asp:button control on the search page. What do i need to put in this event hander to have it pull up the results page in the righthand frame. I know how to do this with a standard html button and submitting the form but I want to create this with webform controls and not standard html controls. <BR><BR>Private Sub btnSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAttach.Click<BR><BR>End Sub<BR><BR>Thanks for any help!<BR>It sounds like you could just set the target of your form to the right frame name then in your button function do a server.transfer or response.redirect to a different search results page if you have one.
 
Back
Top