I am using an image button and onclick of the image button I need to go to a different page. Is there a method in Image Button which does so or do i have to use a function. If i need to use a function do i have to write it for every image button i click<BR><BR>Private Sub ImageButton1_Click(ByVal sender As System.Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImageButton1.Click<BR><BR>Response.redirect "abc.aspx"<BR><BR>End Sub<BR><BR>Or just do it in javascript with an image.<BR><BR><a href="javascript:location.href='test.aspx'"><img src="abc.jpg"></a>