首页 新闻 论坛 群组 Blog 文档 下载 读书 Tag 网摘 搜索 .NET Java 游戏 视频 人才 外包 数据库 第二书店 程序员

ego/ 


共43个网摘 [ 1  2 ]  下一页  |  访问ego的个人空间

Using HTTP Modules To Combat Leeching - The Code Project - ASP.NET

ego收录,使用标签:asp.net, 防盗链,时间:2007-3-24 12:03:15 | 相关网摘我也收藏

The article explains how an HTTP module can be used to combat leech requests to resources on your domain through GET or POST HTTP request methods. The code snippet provided defines a class that implements the IHttpModule interface. An instance of this class will hook into the ASP.NET runtime and intercept the BeginRequest event of the HttpApplication object and determine if the requested URI came from a leech link on another website. Leech links are simply links pointing to resources on your site without your knowledge or authorization


[收藏]防止盗链下载问题 - goody9807 - 博客园

ego收录,使用标签:asp.net, 防盗链,时间:2007-1-31 0:01:26 | 相关网摘我也收藏

经常在网络上四处载东西,有时碰到直接拷贝一个类似http://193.100.100.56/TestWebSolution/WebApplication1/test.rar地址准备下载test.rar文件时,却被告知没有登录或者直接跳转到其他页面的情况,然后等登录后直接下载该文件。要实现上面情况,在.NET世界里是比较容易的。


ASP.NET防盗链 - lizhizhe2000的专栏 - CSDNBlog

ego收录,使用标签:asp.net, 防盗链,时间:2007-1-30 23:56:08 | 相关网摘我也收藏

* 防盗链IHttpHandler
* 增加了对文件关键字的选择(即仅对文件名存在某些关键字或不存在某些关键字进行过滤)


如何在传统 ASP 和 ASP.NET 之间共享会话状态 - System Information - CSDNBlog

ego收录,使用标签:asp.net, asp,时间:2006-12-21 9:43:49 | 相关网摘我也收藏

摘要:讨论如何利用 Microsoft .NET 框架类和 .NET 框架的序列化特性,以便在传统 ASP 和 Microsoft ASP.NET 之间共享会话状态。通过共享会话状态,就允许在并行运行现有的 ASP 应用程序和 ASP.NET 应用程序的同时,分阶段地将 ASP 应用程序转换为 ASP.NET 应用程序。


ASP to ASP.NET Migration Assistant

ego收录,使用标签:asp.net,时间:2006-12-21 9:33:45 | 相关网摘我也收藏

The ASP to ASP.NET Migration Assistant is designed to help you convert ASP pages and applications to ASP.NET. It does not make the conversion process completely automatic, but it will speed up your project by automating some of the steps required for migration.

In this guide, you will find:

* Instructions on how to download and install the migration assistant and accompanying code sample
* An introduction to the ASP to ASP.NET Migration Assistant.
* A comprehensive set of white papers on technical conversion issues.
* Source code for a Web site before and after conversion.
* Extensive guidance on how to best leverage ASP.NET, including new best practices material from the Prescriptive Architecture Guidance (PAG) group.


ASP.NET大文件上传 - outman - 博客园

ego收录,使用标签:asp.net, 上传,时间:2006-12-17 13:21:56 | 相关网摘我也收藏

找了好多资料和源代码正在研究中。。。欢迎大家和我一起研究


让asp.net默认的上传组件支持进度条反映

ego收录,使用标签:asp.net, 上传,时间:2006-12-17 13:18:02 | 相关网摘我也收藏

对于web下的上传,实际上更多的时候不用上传太大东西,asp.net默认的上传组件足够用了,美中不足就是没有上传进度反映,所以现在要做的就是在asp.net默认的上传基础上加上进度反映。


ASP.net下大文件上传的解决方案及WebbUpload组件源码 - Wu.Country@侠缘 - 博客园

ego收录,使用标签:asp.net, 上传,时间:2006-12-17 11:56:04 | 相关网摘我也收藏

特性简介
可上传上小于1G的文件,可以配置Web.config文件来设定上传文件的大小。
完全基于.NET开发,无需任何客户端配置。
提供同步的上传进度条,显示实时上传进度信息。
不破坏页面逻辑,提供类似ASP.NET内置上传组件的使用方法。
不受 Server.ScriptTimeout(请求的超时设置) 影响,可配置服务器处理时间。


HTTP协议下用Web Service上传大文件的解决方案 - Wu.Country@侠缘 - 博客园

ego收录,使用标签:asp.net, 上传,时间:2006-12-17 11:55:26 | 相关网摘我也收藏

用HTTP协议上传大文件也许是个不好办的问题。主要是它的不连续性,使得上传文件感觉很“危险”。特别是很大的文件(几百MB甚至是上G的文件),心里总觉得不踏实,一不小心就会出现问题,而一但出现问题就无法继续上传,这是很郁闷的。


Upload multiple files Hotmail style

ego收录,使用标签:asp.net, 上传,时间:2006-12-17 11:52:36 | 相关网摘我也收藏

I will briefly demonstrate how to upload multiple files using one HttpInputFile control - Hotmail style! Many developers have been asking how to upload multiple files at once. The <Input type=file/> allows a user to select only one file at a time thereby forcing a developer to use multiple <Input type=file/> on a page.


拒绝潜水的鱼-ASP.net里大文件上传的问题讨论

ego收录,使用标签:asp.net, 上传,时间:2006-12-17 11:46:26 | 相关网摘我也收藏

最近做在做ePartner项目,涉及到文件上传的问题。 以前也做过文件上传,但都是些小文件,不超过2M。 这次要求上传100M以上的东西。没办法找来资料研究了一下。基于WEB的文件上传可以使用FTP和HTTP两种协议,用FTP的话虽然传输稳定,但安全性是个严重的问题,而且FTP服务器读用户库获取权限,这样对于用户使用来说还是不太方便。剩下只有HTTP。在HTTP中有3种方式,PUT、WEBDAV、RFC1867,前2种方法不适合大文件上传,目前我们使用的web上传都是基于 RFC1867标准的HTML中基于表单的文件上传。



共43个网摘 [ 1  2 ]  下一页

ego/相关标签



网站简介广告服务网站地图帮助联系方式诚聘英才English 问题报告
北京创新乐知广告有限公司 版权所有 京 ICP 证 070598 号
Copyright © 2000-2008, CSDN.NET, All Rights Reserved