Login.LoginButtonImageUrl 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
로그인 단추에 사용할 이미지의 URL을 가져오거나 설정합니다.
public:
virtual property System::String ^ LoginButtonImageUrl { System::String ^ get(); void set(System::String ^ value); };
public virtual string LoginButtonImageUrl { get; set; }
member this.LoginButtonImageUrl : string with get, set
Public Overridable Property LoginButtonImageUrl As String
속성 값
로그인 단추에 사용되는 이미지의 URL입니다. 기본값은 Empty입니다.
예제
다음 코드 예제에서는 설정 합니다 LoginButtonImageUrl 속성은 이미지의 URL입니다.
<%@ Page Language="C#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void ChangeClick(object sender, EventArgs e)
{
if (Login1.LoginButtonType == ButtonType.Image)
{
Login1.LoginButtonImageUrl = String.Empty;
Login1.LoginButtonType = ButtonType.Button;
}
else
{
Login1.LoginButtonImageUrl = "images/login.png";
Login1.LoginButtonType = ButtonType.Image;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<table>
<tr>
<td>
<asp:Login id="Login1"
runat="server"
LoginButtonImageUrl="images/login.png"
LoginButtonText="Submit the login form."
LoginButtonType="Image">
</asp:Login>
</td>
<td>
<asp:Button id="change"
runat="server"
Text="Change Login button."
onClick="ChangeClick">
</asp:Button>
</td>
</tr>
</table>
</form>
</body>
</html>
<%@ Page Language="VB"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub ChangeClick(ByVal sender As Object, ByVal e As EventArgs)
If Login1.LoginButtonType = ButtonType.Image Then
Login1.LoginButtonImageUrl = String.Empty
Login1.LoginButtonType = ButtonType.Button
Else
Login1.LoginButtonImageUrl = "images/login.png"
Login1.LoginButtonType = ButtonType.Image
End If
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" runat="server">
<table>
<tr>
<td>
<asp:Login id="Login1"
runat="server"
LoginButtonImageUrl="images/login.png"
LoginButtonText="Submit the login form."
LoginButtonType="Image">
</asp:Login>
</td>
<td>
<asp:Button id="change"
runat="server"
Text="Change Login button."
onClick="ChangeClick">
</asp:Button>
</td>
</tr>
</table>
</form>
</body>
</html>
설명
속성은 LoginButtonImageUrl 속성이 로 설정된 경우 컨트롤 로그인 단추로 Login 렌더링된 이미지의 URL을 LoginButtonTypeImage포함합니다.
LoginButtonText 속성은 이미지를 표시 하지 않는 브라우저에서 이미지에 대 한 대체 텍스트로 사용 합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET