ASP Net Controls ASP.Net Tutorial

Important properties of HyperLink control
Enabled:    disable the hyperlink.
ImageUrl:   an image for the hyperlink.
NavigateUrl:URL represented by the hyperlink.
Target:     open a new window.
Text:       label the hyperlink.
      
<%@ Page Language="C#" %>
<%@ Import Namespace="System.IO" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    void Page_Load()
    {
        lnkRandom.NavigateUrl = GetRandomFile();
    }
    string GetRandomFile()
    {
        string[] files = Directory.GetFiles(MapPath(Request.ApplicationPath), "*.aspx");
        Random rnd = new Random();
        string rndFile = files[rnd.Next(files.Length)];
        return Path.GetFileName(rndFile);
    }



    Show HyperLink


    
    

            id="lnkRandom"
        Text="Random Link"
        Runat="server" />