详细请点击:http://www.verydemo.com/demo_c101_i57839.html
- 静态页面 staticHtml.html
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>">
- <html xmlns="<http://www.w3.org/1999/xhtml>" >
- <head>
- <title>统计动态页面访问量的几种方法</title>
- </head>
- <body>
- 这是在层中显示
- <div id="pv"></div>
- <script src="act.aspx"></script>
- </body>
- </html>
- 累加页面 act.aspx
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="act.aspx.cs" Inherits="AddNumber" %>
- act.aspx.cs
- 代码
- public partial class AddNumber : System.Web.UI.Page
- {
- private static int count = 1;
- protected void Page_Load(object sender, EventArgs e)
- {
- count ;
- Response.Write("var pv=document.getElementById(pv); pv.innerText=" count ";");
- }
- }
- 静态页面 staticHtml.html
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>">
- <html xmlns="<http://www.w3.org/1999/xhtml>" >
- <head>
- <title>统计动态页面访问量的几种方法</title>
- </head>
- <body>
- 这是利用图片进行显示
- <img src="Imageact.aspx" alt="这是动态统计的数量" />
- </body>
- </html>
- 累加页面 Imageact.aspx
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Imageact.aspx.cs" Inherits="ImageAddNumber" %>
- Imageact.aspx.cs 代码
- public partial class ImageAddNumber : System.Web.UI.Page
- {
- private static int count = 1;
- protected void Page_Load(object sender, EventArgs e)
- {
- count ;
- string pv = count.ToString();
- System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((pv.Length * 12.5)), 22);
- Graphics g = Graphics.FromImage(image);
- //图片背景色
- g.Clear(Color.White);
- Font font = new System.Drawing.Font("Arial", 12, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic));
- System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.White, Color.Red, (float)1.2f, true);
- g.DrawString(pv,font, brush, 0, 0);
- g.DrawRectangle(new Pen(Color.Gold), 0, 0, image.Width - 1, image.Height - 1);
- System.IO.MemoryStream ms = new System.IO.MemoryStream();
- image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
- Response.ClearContent();
- Response.ContentType = "image/Gif";
- Response.BinaryWrite(ms.ToArray());
- }
- }