Hyperlink Control
This is a hyperlink control example coded using C#
|
<%@ Page Language="C#" %>
<html>
<head>
<title>Hyperlink control example
in ASP.net</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
</head>
<body>
<form runat="server" id="form1"
name="form1">
<asp:hyperlink runat="server"
NavigateUrl = "http://www.programmingsite.co.uk"
Target ="_NewWindow">
programmingsite home page
</asp:hyperlink>
</form>
</body>
</html> |
|
|
|