一个Web文件上传的C#源代码

2016-01-29 12:58 91 1 收藏

一个Web文件上传的C#源代码,一个Web文件上传的C#源代码

【 tulaoshi.com - ASP.NET 】

//保存文件的路径,包括文件名 private string GetSavePath(string FileName) { string path=Request.PhysicalApplicationPath +"Link_Icon"; return path+""+FileName; }
private bool UpLoad()//上传图片 { bool flag=false; string FileName=GetFileName(fileIcon.Value ); string db=Request.PhysicalApplicationPath+"#CommCcope.mdb"; string constr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+db; OleDbConnection con=new OleDbConnection (constr); try { //上传文件 string SavePath=GetSavePath(FileName); fileIcon .PostedFile.SaveAs (SavePath);
//插入数据库 OleDbCommand com=new OleDbCommand ("Insert into FriendLink(SiteName,DISPLAY,LINK) VALUES('"+txtName.Text +"','"+FileName+"','"+txtLink.Text +"')",con); con.Open (); com.ExecuteNonQuery (); con.Close (); flag =true; } catch(Exception ex) { Label1 .Text ="错误:"+ex.Message ; } finally { if(con.State !=0)con.Dispose (); } return flag; }

来源:http://www.tulaoshi.com/n/20160129/1488364.html

延伸阅读
原理我像大家都很清楚,这里只说.NET(c#实现)。服务器每次启动或者重启,都是没登陆的。那意味着启动项里不只能做,我就考虑到使用Windows服务。Windows服务在系统加载时候就会启动所有服务,把程序写进里面应该没错了。 需要重启,那就要一个时间来效验,写法都有很多。我这里采用ini来存放。 Time 记录要重启的时间,验证时间。 Day 用来...
标签: ASP
  <!--#include file="../lib/filelib.asp"-- <%     Response.write "<title上传文件至当前文件夹</title"     Response.Write "<body bgcolor=""#D6D3CE"" leftmargin=""0"" topmargin=""0"&...
标签: PHP
  以前没怎么注意搞过文件上传,昨天搞了一个简单的却发现问题还挺多。 刚开始的程序代码如下: uploadimg.php   <?php //判断是上载界面还是实现界面,如果是上载界面,显示下面的HTML页面 if(!$_POST['UploadAction']): ? <html <head <title</title </head <body<table<center <form enctype=...
import java.awt.*; import java.awt.event.*; import java.util.*; public class CalenderCreator extends Frame { Button days[]=new Button[49]; Choice Month=new Choice(); Choice Year=new Choice(); Label lmonth=new Label("MONTH"); Label lyear=new Label("Year"); Label ltext=new Label("YEAR UPTO:...
标签: ASP
  chat.html   <html <head<titleChat</title</head <frameset rows="*,100" <frame src="http://img.jcwcn.com/attachment/portal"

经验教程

32

收藏

37
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部