11 2005 档案

电子书
摘要:1. http://www.vvsoft.net/ (Vc++) 阅读此网页,知道目前要找的是MFC编程指南2. http://blog.sina.com.cn/u/46b13f47010000od (文学书籍)3. 阅读全文

posted @ 2005-11-27 00:39 cy163 阅读(575) 评论(0) 推荐(0) 编辑

How Run Class library program (SlickUpload)
摘要:1. download SlickUpload-2.5.2,2. uncompress it to a folder under 'wwwroot', say ProgressBarSlickUpload3. Open project 'ProgressBarSlickUpload' in .net framework 20004, To run program under 'SimpleUpl... 阅读全文

posted @ 2005-11-25 23:11 cy163 阅读(342) 评论(0) 推荐(0) 编辑

C# 电子书 http://www.vijaymukhi.com/
摘要:http://www.vijaymukhi.com/ 阅读全文

posted @ 2005-11-22 23:41 cy163 阅读(489) 评论(0) 推荐(0) 编辑

How to solve the problem "A project with an Output Type of Class Library cannot be started directly "
摘要:https://www.mainfunction.com/DotNetInAction/Technologies/display.aspx?ID=2402&TypeID=7Figure 5 Choose the tab labeled .NET Framework Components and click Browse… Find the folder for your HelloWorld p... 阅读全文

posted @ 2005-11-22 00:17 cy163 阅读(1427) 评论(0) 推荐(0) 编辑

Server Side File Upload Progress Bar
摘要:Download source files - 57.7 Kb To test the application, please type http://localhost/fileupload/webform1.aspx?guid=123abc. It is recommended that you test with files that is over 20MB to see the ... 阅读全文

posted @ 2005-11-20 19:50 cy163 阅读(1209) 评论(1) 推荐(0) 编辑

File Uploading to Server Hard Disk using ASP.NET
摘要:http://www.stardeveloper.com/articles/display.html?article=2003022601&page=1 OverviewIn this article we will learn how to upload one or more files from the client browser to the server hard disk usin... 阅读全文

posted @ 2005-11-20 19:36 cy163 阅读(633) 评论(0) 推荐(0) 编辑

File Uploading in ASP.NET Using C#
摘要:http://www.stardeveloper.com/articles/display.html?article=2002022201&page=1 File Uploading in ASP.NET Using C#by Sriram Vaideeswaran. '); //--> Overview :File uploading has always been a tediou... 阅读全文

posted @ 2005-11-20 19:32 cy163 阅读(532) 评论(0) 推荐(0) 编辑

让asp.net默认的上传组件支持进度条反映
摘要:http://blog.joycode.com/dotey/archive/2005/06/12/53557.aspx 对于web下的上传,实际上更多的时候不用上传太大东西,asp.net默认的上传组件足够用了,美中不足就是没有上传进度反映,所以现在要做的就是在asp.net默认的上传基础上加上进度反映。 关于web上传的原理,曾在以前有深入分析过《asp无组件上传进度条解决方案》《Asp无组件上... 阅读全文

posted @ 2005-11-20 19:18 cy163 阅读(2820) 评论(2) 推荐(0) 编辑

Asp无组件上传带进度条(续)
摘要:几个月前,写过一篇关于Asp无组件上传带进度条的Blog,当时主要分析了一下通过Web文件上传并在后台获取分析数据的实现原理。其中实现进度条的根本就是要实现分块获取数据,根据分块大小和块数记录已上传大小。还有一些具体的细节问题当时并没有说清楚: Q: 进度信息如何访问?A: 进度信息保存在Application中,每次上传时生成一个进度ID,根据这个进度ID可以检索Application中的当前上... 阅读全文

posted @ 2005-11-20 19:11 cy163 阅读(2462) 评论(1) 推荐(0) 编辑

Asp无组件上传进度条解决方案
摘要:http://webuc.net/dotey/archive/2004/07/22/1334.aspx 我还是一点一点用一个实例来说明的吧,客户端HTML如下。要浏览上传附件,我们通过元素,但是一定要注意必须设置form的enctype属性为"multipart/form-data": 在后台asp程序中,以前获取表单提交的ASCII 数据,非常的容易。但... 阅读全文

posted @ 2005-11-20 19:04 cy163 阅读(4383) 评论(0) 推荐(0) 编辑

ASP.NET makes uploading files from the client to the server a snap(UploadInterface.PostedFile.SaveAs)
摘要:http://www.computerbooksonline.com/tips/asp11.aspIn a previous tip, we talked about uploading files via classic ASP. As you saw, getting the file from the client to the server isn't a big deal, but ge... 阅读全文

posted @ 2005-11-20 14:49 cy163 阅读(384) 评论(0) 推荐(0) 编辑

IT IS an IMPORTANT String for Input TYPE=File Field --enctype="multipart/form-data"
摘要:--> 添加附件 总共有 0 个文件等待上传 --> 添加附件 ... 阅读全文

posted @ 2005-11-20 07:29 cy163 阅读(447) 评论(0) 推荐(0) 编辑

WebControls and HtmlControls
摘要:http://odetocode.com/Articles/348.aspx When sitting down to write an ASP.NET application the designer in Visual Studio.NET gives us a toolbox window full of controls. Two of the areas on the toolb... 阅读全文

posted @ 2005-11-19 21:46 cy163 阅读(416) 评论(0) 推荐(0) 编辑

A lot of Javascript tips
摘要:http://www.powerqz.com/cgi-bin/post.cgi?action=replyquote&forum=12&topic=48&postno=3在b/s开发中经常用到的javascript技术 一、验证类1、数字验证内 1.1 整数 1.2 大于0的整数 (用于传来的ID的验证) 1.3 负整数的验证 1.4 整数不能大于iMax 1.5 整数不能小于iMin2、时间类 2... 阅读全文

posted @ 2005-11-19 17:51 cy163 阅读(415) 评论(0) 推荐(0) 编辑

Converting Numbers to Strings
摘要:http://www.javascripter.net/faq/converti.htm Question: How do I convert numbers to strings in JavaScript? Answer: The simplest way to convert any variable to a string is to add an empty string to tha... 阅读全文

posted @ 2005-11-19 17:38 cy163 阅读(184) 评论(0) 推荐(0) 编辑

如何制作无边弹出窗口
摘要:http://bar.yesky.com/BoardDisp_84.html Chromeless Window 阅读全文

posted @ 2005-11-19 17:22 cy163 阅读(477) 评论(0) 推荐(0) 编辑

可编辑的 HTML JavaScript 表格控件 DataGrid
摘要:http://evget.com/articles/evget_1107.html可编辑的 HTML JavaScript 表格控件 DataGrid无标题文档 阅读全文

posted @ 2005-11-17 17:27 cy163 阅读(2024) 评论(0) 推荐(0) 编辑

浅析Google技术底蕴
摘要:http://www9.tianya.cn/publicforum/Content/itinfo/1/25356.shtml MapReduce: Simplied Data Processing on Large Clusters, Jeffrey Dean and Sanjay Ghemawat,OSDI 2004 阅读全文

posted @ 2005-11-17 16:43 cy163 阅读(281) 评论(0) 推荐(0) 编辑

资料只看看,不能copy/paste。
摘要:http://blog.itpub.net/rss/137/288昨天有朋友要我帮她拷贝几个资料网页下来,但是那个网站做了很多手脚,资料只看看,不能copy/paste。我还是比较鄙视这种网站的,只能看不能摸,多无聊啊。 昨天快下班了,所以也没怎么搞,今天上午就看了一下 首先页面的那个iframe转向encrypt.asp?act=BODY&id=740,拿下来看看,这个源文件中的关键部分是这么写... 阅读全文

posted @ 2005-11-17 14:30 cy163 阅读(562) 评论(0) 推荐(0) 编辑

多附件上传组件代码(Add and Remove HTML elements dynamically with Javascript)
摘要:Nov 17. 2005 In th e past two days, I finished the function of multiple file selection using javascript.The implementation is built on the basis of reference (2). However, i encounter the following er... 阅读全文

posted @ 2005-11-17 09:23 cy163 阅读(783) 评论(0) 推荐(0) 编辑

Cascading Menu Script using Javascript Explained
摘要:http://www.webdevelopersjournal.com/articles/cascading/cascade_explained1.html Cascading Menu Script Explained by Aaron Prenot This article follows on from Cascading Menus and fully explains how the ... 阅读全文

posted @ 2005-11-17 08:54 cy163 阅读(406) 评论(0) 推荐(0) 编辑

网站首页head区代码规范
摘要:head区是指首页HTML代码的和之间的内容。必须加入的标签1.公司版权注释 2.网页显示字符集简体中文:繁体中文:英 语:3.网页制作者信息4.网站简介5.搜索关键字6.网页的css规范7.网页标题xxxxxxxxxxxxxxxxxx.可以选择加入的标签1.设定网页的到期时间。一旦网页过期,必须到服务器上重新调阅。2.禁止浏览器从本地机的缓存中调阅页面内容。3.用来防止别人在框架里调用你的页面。... 阅读全文

posted @ 2005-11-16 20:21 cy163 阅读(221) 评论(0) 推荐(0) 编辑

Asp无组件上传带进度条
摘要:http://www.aspnetupload.net/ IntroductionAspnetUpload is an ASP.NET HttpModule that allows you upload files from a web browser to your IIS server.It requires no client side software and operates on t... 阅读全文

posted @ 2005-11-16 20:18 cy163 阅读(347) 评论(0) 推荐(0) 编辑

SlickUpload(Upload Progress Bar)
摘要:http://community.assistedsolutions.com/blogs/slickupload/http://krystalware.com/blog/ 阅读全文

posted @ 2005-11-15 00:52 cy163 阅读(334) 评论(0) 推荐(0) 编辑

FileUploadProgressBar in ASP.NET
摘要:http://www.codeproject.com/aspnet/FileUploadProgressBar.asp 阅读全文

posted @ 2005-11-15 00:42 cy163 阅读(167) 评论(0) 推荐(0) 编辑

To select the file to upload we can use the standard HTML input control of type
摘要:www.devasp.net/net/samplechapters/6934/6934_6.asp 阅读全文

posted @ 2005-11-15 00:35 cy163 阅读(141) 评论(0) 推荐(0) 编辑

Upload multiple files Hotmail style By Kwame Hubbard
摘要:http://www.codeproject.com/aspnet/multiuploads.asp#xx1270445xx 阅读全文

posted @ 2005-11-15 00:34 cy163 阅读(143) 评论(0) 推荐(0) 编辑

This control will present the user with an upload file dialog box
摘要:http://www.developerfusion.co.uk/show/3905/2/Now that we have a warm, fuzzy place to store our images, lets build a webform to upload our images into the database. Enter A Friendly Name Select File ... 阅读全文

posted @ 2005-11-15 00:12 cy163 阅读(220) 评论(0) 推荐(0) 编辑

You cannot access the client's file system using the FileSystemObject in your ASP code
摘要:http://p2p.wrox.com/topic.asp?TOPIC_ID=587What kind of permission are you trying to propagate? FSO can be used to copy contents from one place to another, provided that you have enough permissions to ... 阅读全文

posted @ 2005-11-14 23:20 cy163 阅读(252) 评论(0) 推荐(0) 编辑

ASP.NET中的变量数值管理------
摘要:Web form pages are HTTP-Based, they are stateless, which means they don’t know whether the requests are all from the same client, and pages are destroyed and recreated with each round trip to the serv... 阅读全文

posted @ 2005-11-14 23:15 cy163 阅读(333) 评论(0) 推荐(0) 编辑

Working with TreeView WebControl Part 1 – Basics
摘要:http://www.dnzone.com/ShowDetail.asp?NewsId=111 One of the new gifts from .NET is Internet Explorer WebControls Version 1.0 of the ASP.NET Server Controls. This is a suite of “rich” controls that lets... 阅读全文

posted @ 2005-11-10 10:46 cy163 阅读(298) 评论(0) 推荐(0) 编辑

Client Side File System Browser using a Web Control TreeView
摘要:http://www.dotnet247.com/247reference/articles/1/9431.aspxSummary:There are two files that are included in the ZIP file. I am using Visual Studio.NET 2000 Framework 1.1 What does this do? Not to long ... 阅读全文

posted @ 2005-11-10 10:45 cy163 阅读(189) 评论(0) 推荐(0) 编辑

Resources, References, Tutorials on C#
摘要:http://www.cetus-links.org/oo_csharp.html#oo_csharp_central_sites 阅读全文

posted @ 2005-11-10 09:22 cy163 阅读(150) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示