HtmlInputImage.Align Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Denetimin hizalamasını HtmlInputImage Web sayfasındaki diğer öğelerle ilişkili olarak alır veya ayarlar.
public:
property System::String ^ Align { System::String ^ get(); void set(System::String ^ value); };
public string Align { get; set; }
member this.Align : string with get, set
Public Property Align As String
Özellik Değeri
Denetimin HtmlInputImage Web sayfasındaki diğer öğelere göre hizalaması.
Örnekler
Aşağıdaki kod örneği, denetimin Align Web sayfasındaki diğer öğelere göre hizalamasını HtmlInputImage belirtmek için özelliğinin nasıl kullanılacağını gösterir.
<%@ 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">
<script runat="server">
protected void SubmitBtn_Click(object sender, ImageClickEventArgs e)
{
// Set the inner HTML of the Message span element.
Message.InnerHtml = "The Submit button was clicked.";
}
protected void ClearBtn_Click(object sender, ImageClickEventArgs e)
{
// Set the inner HTML of the Message span element.
Message.InnerHtml = "The Clear button was clicked.";
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
</title>
</head>
<body>
<form id="form1" runat="server">
<input type="image"
runat="server"
id="Image1"
onserverclick="SubmitBtn_Click"
alt="Submit button"
src="Submit.jpg"
style="text-align:left; border:2" />
<input type="image"
alt="Clear button"
style="text-align:right"
src="Clear.jpg"
onserverclick="ClearBtn_Click"
runat="server"
id="Image2" />
<h1>
<span id="Message"
runat="server">
</span>
</h1>
</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">
<script runat="server">
Sub SubmitBtn_Click(ByVal Source As Object, ByVal E As ImageClickEventArgs)
' Set the inner HTML of the Message span element.
Message.InnerHtml = "The Submit button was clicked."
End Sub
Sub ClearBtn_Click(ByVal Source As Object, ByVal E As ImageClickEventArgs)
' Set the inner HTML of the Message span element.
Message.InnerHtml = "The Clear button was clicked."
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
</title>
</head>
<body>
<form id="form1" runat="server">
<input type="image"
alt="Submit button"
style="text-align:left; border:2"
src="Submit.jpg"
onserverclick="SubmitBtn_Click"
runat="server" />
<input type="image"
alt="Clear button"
style="text-align:right; border:2"
src="Clear.jpg"
onserverclick="ClearBtn_Click"
runat="server" />
<h1>
<span id="Message"
runat="server">
</span>
</h1>
</form>
</body>
</html>
Açıklamalar
Align Web sayfasındaki diğer öğelerle ilişkili olarak denetimin HtmlInputImage hizalamasını belirtmek için özelliğini kullanın.