Slide 13.6: Server controls
Slide 13.8: HTML server controls (cont.)
Home

HTML Server Controls


The following example declares two HtmlAnchor server controls, which allow programmatic access to the HTML <a> tag on the server. For example,
   <a id="link1" runat="server">
The executable code itself has been moved outside the HTML and put in the section
   <script runat="server">
The Page_Load event is triggered when a page loads. It manipulates the following attributes of the HtmlAnchor:

demo_htmlanchor.aspx

Web
01<%@ Page Language="C#" %>
02<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
04 
05<script language="C#" runat="server">
06 protected void Page_Load( object sender, EventArgs e ) {
07  link1.HRef="http://www.w3schools.com";
08  link1.Target="_blank";
09  link1.Title="W3Schools";
10  link2.HRef="http://www.microsoft.com";
11  link2.Target="_blank";
12  link2.Title="Microsoft";
13 }
14</script>
15 
16<html xmlns="http://www.w3.org/1999/xhtml" >
17 <body>
18  <form runat="server">
19   <a id="link1" runat="server">Visit W3Schools!</a>
20   <a id="link2" runat="server">Visit Microsoft!</a>
21  </form>
22 </body>
23</html>