摘要:
call the event viewer control by the tag prefix colon and the class name of eventlog.cs. note that we set a property from the query string in the code behind file.
display vw_eventlog.aspx fil......
摘要:
asp.net 提供了三种存放 session的方式。
1 inproc
2 state server
3 sql server
第一种是我们经常用的,第2中就是使用一个名为 state server 的机器用它的内存来存放其他机器的session 状态,其实,我们还可以在 sql server 里面来存放和取得 session。是不是第一次听说。
下面讲述实现过程。
找到......
实现由web.config控制的验证
1.在web.config文件中有这一段内容:
<authentication mode="forms">
<forms name=".aspxuserdemo" loginurl="login.aspx" protection="all" timeout="60" />
</authentication>
<authorization>
<deny users="?" />
</authoriz...
下一页 摘要:
我校的学生网:www.ehang.com.cn中有校友录和图库等的项目有上传图片的功能,我将图片数据存入数据库中,需要将图片变小后和原图片一块存入数据库中,这样先可显示很多小图,点击后再显示大图!在asp.net中是这么做的:
changimage.aspx中代码:
<%@ page language="vb" autoeventwireup="......