***** ASPX CODE ***** <%--This line is used to display the file names and information while removing some special characters.--%> & _ <%#Replace(Replace(Replace(DataBinder.Eval(Container.DataItem, "Name"), ".aspx", ""), "-", " "), "_", " ")%> ***** CODE BEHIND ***** Imports System Imports System.IO Partial Class _Default Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Try 'Path for files to be listed Dim dirInfo As New DirectoryInfo(Server.MapPath("SHAREDFILES\")) 'Get all files with extension *.aspx articleList.DataSource = dirInfo.GetFiles("*.aspx") 'Bind to Grid articleList.DataBind() Catch excpt As System.Exception Response.Write("ERROR: Directory Search " & (excpt.Message)) End Try End Sub End Class 'FILE Properties: http://msdn.microsoft.com/en-us/library/as4xcs58(VS.80).aspx