I would like to place an image in my application. when I click on it I want to move to another page. In general my asp:image to work as link Is that possible ??
You can use an ImageButton with a server side click event:
ImageButton
Response.Redirect("SecondPage.aspx");
Or alternatively, you could wrap a Hyperlink control around the Image control:
Hyperlink
Image
Or just use a HTML anchor tag if you don't need the link to be dynamic: