Switch to full style
ASP/ASP.net examples
Post a reply

add link in asp.net

Sat Mar 26, 2011 11:12 pm

Following code show you how to create link in asp
Code:
<html>
<
head>
<
title>ASP link example</title>
<
script runat="server">
Sub Page_Load
mylink
.Href="http://www.codemiles.com"
mylink.Target="_blank"
mylink.Title="codemiles"
End Sub
</script>
</head>
<body>
<form runat="server">
<a id="mylink" runat="server">Codemiles</a>
<br />
</form>
</body>
</html>




Post a reply
  Related Posts  to : add link in asp.net
 Link send     -  
 Different statuses for link by CSS     -  
 create download link     -  
 inline style for link tag.     -  
 Open a link in a new window?     -  
 White space link example     -  
 Underline for visited link     -  
 set MIME type in link     -  
 Changing link color     -  
 Send email link example.     -  

Topic Tags

ASP Basics