随笔- 785
文章- 9
评论- 171
阅读-
123万
04 2008 档案
asp.net 多文件上传
摘要:Asp.Net 2.0 实现多文件上传的方法 【摘要】多文件上传的方法其实很简单,在页面上添加多个html文件上传控件,就可在代码中用如下语句System.Web.HttpContext.Current.Request.Files来取得页面中的所有文件上传控年对象,然后调用 Files对象的SaveAs就可将多个文件上传上去,跟单文件上传没有多大区别。【全文】 如下代码示例,可将多个文件上传到...
阅读全文
怎么样控制Button不能连续点二次 ASP.NET
摘要:private void Page_Load(object sender, System.EventArgs e) { // 在此处放置用户代码以初始化页面 this.GetPostBackEventReference(Button1); //这句很关键,有这句才能让客户端执行服务器端事件。 Button1.Attributes...
阅读全文
无法在web服务器上启动调试,IIS HTTP 500 内部服务器错误 服务器无法加载应用程序 '/LM/W3SVC''/LM/W3SVC' '找不到指定的元数据
摘要:无法在web服务器上启动调试, Server Application ErrorServer Application ErrorThe server has encountered an error while loading an application during the kprocessing of your request. Please refer to the event log f...
阅读全文
SQL取出 所有周六 周日的日期
摘要:create table SatSun([id] int identity(1,1),[date] datetime,[weekday] char(6))godeclare @datetime datetime,@weekday char(6)set @datetime='2007-1-1'while @datetime 5 then 0 else 6 - @begin_day_o...
阅读全文