like php
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; using System.Net; using System.Text.RegularExpressions; namespace FusionChartTest { public partial class SiteMaster : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e) { string current_file = Path.GetFileName(Request.Path); System.Diagnostics.Debug.WriteLine("filename: " + current_file); string[] lines = System.IO.File.ReadAllLines(Server.MapPath("~") + @"\sitemap.ini").Where(s => s.Trim() != string.Empty).ToArray(); ...
Comments
Post a Comment