Saturday, February 19, 2011

Enable disable theme in HyperLink

HyperLinkThemeDisable.aspx



<%@ Page Language="C#" Theme="HyperLink" %>  
  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  
<script runat="server">  
      
</script>  
  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head id="Head1" runat="server">  
    <title>How to enable disable theme in HyperLink</title>  
</head>  
<body>  
    <form id="form1" runat="server">  
    <div>  
        <h2 style="color:Green">HyperLink Example: Disable Theme</h2>  
        <asp:HyperLink   
             ID="HyperLink1"  
             runat="server"  
             Text="ListBox Height Example"  
             NavigateUrl="~/ListBox/ListBoxHeight.aspx"  
             EnableTheming="false"  
             >  
        </asp:HyperLink>  
        <br />  
        <br />  
        <asp:HyperLink   
             ID="HyperLink2"  
             runat="server"  
             Text="ListBox Theme and SkinID Example"  
             NavigateUrl="~/ListBox/ListBoxSkin.aspx"  
             EnableTheming="true"  
             >  
        </asp:HyperLink>  
    </div>  
    </form>  
</body>  
</html>  
HyperLink.skin

<asp:HyperLink   
     runat="server"  
     ForeColor="SaddleBrown"  
     BorderColor="DarkRed"  
     BorderWidth="2"  
     Font-Size="Large"  
     Font-Italic="true"  
     Font-Bold="true"  
     >  
</asp:HyperLink>

No comments: