HtmlInputImage.Border Property

 

Gets or sets the border width for the HtmlInputImage control.

Namespace:   System.Web.UI.HtmlControls
Assembly:  System.Web (in System.Web.dll)

Public Property Border As Integer

Property Value

Type: System.Int32

The border width, in pixels, for the HtmlInputImage control.

Use the Border property to specify the border width for the HtmlInputImage control.

System_CAPS_noteNote

This property is not supported in all browsers. Check your browser to determine compatibility.

The following code example demonstrates how to use the Border property to specify the border width for the HtmlInputImage control.

<%@ 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>

.NET Framework
Available since 1.1
Return to top
Show: