<%@ Import Namespace="System.IO" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
// 在应用程序启动时运行的代码
string filepath = Server.MapPath("~/App_Data/Count.txt")
if (!File.Exists(filepath))
{
StreamWriter sw = new StreamWriter(filepath)
sw.WriteLine(0)
sw.Flush()
sw.Close()
}
StreamReader sr = new StreamReader(filepath)
int intFwl = int.Parse(sr.ReadLine())
sr.Close()
Application["Fwl"] = intFwl
Application["Online"] = 0
}
void Application_End(object sender, EventArgs e)
{
// 在应用程序关闭时运行的代码
string filepath = Server.MapPath("~/App_Data/Count.txt")
StreamWriter sw = new StreamWriter(filepath)
sw.WriteLine(Application["Fwl"])
sw.Flush()
sw.Close()
}
void Application_Error(object sender, EventArgs e)
{
// 在出现未处理的错误时运行的代码
}
void Session_Start(object sender, EventArgs e)
{
// 在新会话启动时运行的代码
Application["Fwl"] = int.Parse(Application["Fwl"].ToString()) + 1
Application["Online"] = int.Parse(Application["Online"].ToString()) + 1
Session.Timeout = 5
string filepath = Server.MapPath("~/App_Data/Count.txt")
StreamWriter swFile = new StreamWriter(filepath)
swFile.WriteLine(Application["Fwl"])
swFile.Flush()
swFile.Close()
}
void Session_End(object sender, EventArgs e)
{
// 在会话结束时运行的代码。
// 注意: 只有在 Web.config 文件中的 sessionstate 模式设置为
// InProc 时,才会引发 Session_End 事件。如果会话模式设置为 StateServer
// 或 SQLServer,则不会引发该事件。
Application["Online"] = int.Parse(Application["Online"].ToString()) - 1
}
</script>
在线 和 来访人数 上面全体复制到 Global.asax
分割线----------------------------------------------------------------------------------------------
下面是显示出来的 添加到你需要的页的cs文件里面
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string sFwl = Application["Fwl"] != null ? Application["Fwl"].ToString() : "N"
string sOnline = Application["Online"] != null ? Application["Online"].ToString() : "N"
for (int i = 0i <sFwl.Lengthi++)
{
Label1.Text += "<img src='images/count/" + sFwl[i] + ".png'/>"
}
for (int i = 0i <sOnline.Lengthi++)
{
Label2.Text += "<img src='images/count/" + sOnline[i] + ".png'/>"
}
}
}
2. ASP与SQL数据库连接: <%@ language=VBscript%><% dim conn set conn=server.createobject("ADODB.connection") con.open "PROVIDER=SQLOLEDBDATA SOURCE=SQL服务器名称或IP地址UID=saPWD=数据库密码DATABASE=数据库名称 %>建立记录集对象: set rs=server.createobject("adodb.recordset") rs.open SQL语句,conn,3,23. SQL常用命令使用方法: (1) 数据记录筛选: sql="select * from 数据表 where 字段名=字段值 order by 字段名 [desc]" sql="select * from 数据表 where 字段名 like '%字段值%' order by 字段名 [desc]" sql="select top 10 * from 数据表 where 字段名 order by 字段名 [desc]" sql="select * from 数据表 where 字段名 in ('值1','值2','值3')" sql="select * from 数据表 where 字段名 between 值1 and 值2" (2) 更新数据记录: sql="update 数据表 set 字段名=字段值 where 条件表达式" sql="update 数据表 set 字段1=值1,字段2=值2 …… 字段n=值n where 条件表达式" (3) 删除数据记录: sql="delete from 数据表 where 条件表达式" sql="delete from 数据表" (将数据表所有记录删除) (4) 添加数据记录: sql="insert into 数据表 (字段1,字段2,字段3 …) values (值1,值2,值3 …)" sql="insert into 目标数据表 select * from 源数据表" (把源数据表的记录添加到目标数据表) (5) 数据记录统计函数: AVG(字段名) 得出一个表格栏平均值 COUNT(*ψ侄蚊) 对数据行数的统计或对某一栏有值的数据行数统计 MAX(字段名) 取得一个表格栏最大的值 MIN(字段名) 取得一个表格栏最小的值 SUM(字段名) 把数据栏的值相加 引用以上函数的方法: sql="select sum(字段名) as 别名 from 数据表 where 条件表达式" set rs=conn.excute(sql) 用 rs("别名") 获取统的计值,其它函数运用同上。 (5) 数据表的建立和删除: CREATE TABLE 数据表名称(字段1 类型1(长度),字段2 类型2(长度) …… ) 例:CREATE TABLE tab01(name varchar(50),datetime default now()) DROP TABLE 数据表名称 (永久性删除一个数据表)4. 记录集对象的方法:欢迎分享,转载请注明来源:内存溢出
评论列表(0条)