HtmlImage.Src 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
표시할 이미지 파일 소스를 가져오거나 설정합니다.
public:
property System::String ^ Src { System::String ^ get(); void set(System::String ^ value); };
public string Src { get; set; }
member this.Src : string with get, set
Public Property Src As String
속성 값
표시할 이미지 파일의 경로가 들어 있는 문자열입니다.
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 Src 웹 페이지 원본 파일과 동일한 디렉터리에 표시할 이미지 파일을 지정 하는 속성입니다.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlImage Example</h3>
<img id ="Image1"
src="Image1.jpg"
alt="Image 1"
runat="server"
style="width:500; height:226; border:5; text-align:center" />
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlImage Example</h3>
<img id ="Image1"
src="Image1.jpg"
alt="Image 1"
runat="server"
style="width:500; height:226; border:5; text-align:center" />
</form>
</body>
</html>
다음 코드 예제를 사용 하는 방법에 설명 합니다 Src 웹 페이지 원본 파일에서 다른 디렉터리에 표시할 이미지 파일을 지정 하는 속성입니다.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlImage Example</h3>
<img id ="Image1"
src="Image1.jpg"
alt="Image 1"
runat="server"
style="width:500; height:226; border:5; text-align:center" />
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlImage Example</h3>
<img id ="Image1"
src="Image1.jpg"
alt="Image 1"
runat="server"
style="width:500; height:226; border:5; text-align:center" />
</form>
</body>
</html>
설명
이 속성을 사용 하 여 표시할 이미지 파일의 경로를 지정 합니다. 이미지 파일을 사용 하는 웹 페이지 원본 파일과 동일한 디렉터리에 있으면 바로 파일 이름을 지정할 수 있습니다. 그렇지 않은 경우는 파일의 경로를 포함 해야 합니다. 절대 또는 웹 페이지 원본 파일이 포함 된 디렉터리에 상대적 경로일 수 있습니다. 상대 경로 사용할 수 있습니다 " ~/
" 페이지 인 현재 가상 디렉터리를 가리키도록 합니다. 예를 들어, 값 Src 에 대 한 <img runat="server" src="~/abc/d.gif">
"XspTest" 페이지에서 가상 디렉터리는 <img src="/XspText/abc/d.gif">
합니다.