제목 : ImageButton 컨트롤
글번호:
|
|
95
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2004/06/02 오후 7:54:00
|
조회수:
|
|
5774
|
ImageButton 컨트롤 : LinkButton 컨트롤과 마찬가지로 사용자가 어떤 명령을 서버측에 전달할 때 사용하는 컨트롤이다. 이 때 웹브라우저에 보여지는 모양은 <input type="image">로 출력된다.
1. ASP.NET의 소스 부분
<asp:ImageButton
id="ImageButton1"
runat="server"
ImageUrl="http://www.dotnetkorea.com/common/images/logo/dotnetkoreaLogo1.gif">
</asp:ImageButton>
2. 웹브라우저 출력 부분
<input type="image"
name="ImageButton1"
id="ImageButton1"
src="http://www.dotnetkorea.com/common/images/logo/dotnetkoreaLogo1.gif"
border="0
/>