谁有js+xml或者js+txt做的网站访问量代码,给一个吧,
展开全部
提供一个利用文本文件存储网站访问量:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
int c;
using (StreamReader sr = new StreamReader(Server.MapPath("~") + "\\count.txt"))
{
c = Convert.ToInt32((sr.ReadToEnd()));
}
if (Session["notFirstAccess"] == null)
{
c++;
using (StreamWriter sw = new StreamWriter(Server.MapPath("~") + "\\count.txt"))
{
sw.Write(c);
sw.Flush();
sw.Close();
}
Session.Add("notFirstAccess", "true");
}
labAccessCount.Text = "本网站访问量:" + c.ToString();
}
}
希望对你有帮助。
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
int c;
using (StreamReader sr = new StreamReader(Server.MapPath("~") + "\\count.txt"))
{
c = Convert.ToInt32((sr.ReadToEnd()));
}
if (Session["notFirstAccess"] == null)
{
c++;
using (StreamWriter sw = new StreamWriter(Server.MapPath("~") + "\\count.txt"))
{
sw.Write(c);
sw.Flush();
sw.Close();
}
Session.Add("notFirstAccess", "true");
}
labAccessCount.Text = "本网站访问量:" + c.ToString();
}
}
希望对你有帮助。
追问
js+xml或者js+txt的,你这个是.net的
追答
是的,这个是txt文本文件的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询