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