asp:HyperLink: border style and width (VB.net) : Hyperlink « Asp Control « ASP.Net






asp:HyperLink: border style and width (VB.net)

<%@ Page Language=VB Debug=true %>
<script runat=server>
Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)

End Sub
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)

End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Creating a Basic TextBox Control</TITLE>
</HEAD>
<form runat="server">
<asp:HyperLink 
    id="hypMS"
    runat="server"
    text="Click to connect to Microsoft"
    navigateurl="http://www.microsoft.com"
    target="_blank"
    borderwidth="7px"
    borderstyle=7
/>
</form>
</BODY>
</HTML>
           
       








Related examples in the same category

1.Displaying a Graphic on a HyperLink Control (VB.net)
2.Hyperlink: command name and url (VB.net)
3.asp:HyperLink with NavigateURL (VB.net)
4.asp Hyperlink button (C#)
5.asp hyperlink: font, width and text (C#)