4. FrmImageButton.aspx.cs 파일을 열고 다음과 같이 코드를 작성한다.
▼ FrmImageButton.aspx.cs
using System; using System.Web.UI; namespace DevStandardControl { public partial class FrmImageButton : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { this.imgWrite.ImageUrl = "/images/btn_post.gif"; this.imgList.ImageUrl = "./images/btn_list.gif"; } protected void imgWrite_Click( object sender, ImageClickEventArgs e) { Response.Write("글쓰기 버튼 클릭됨.<br />"); } protected void imgList_Click( object sender, ImageClickEventArgs e) { Response.Write("리스트 버튼 클릭됨.<br />"); } } }
페이지를 로드할 때 각 이미지를 ImageUrl 속성에서 지정할 수 있다. 여기서 사용하는 이미지는 이 책의 소스에서 DevStandardControle 프로젝트의 images 폴더에 있는 이미지를 참고하거나 다른 이미지로 테스트해도 상관없다.