使用FileUpload控件上传图片,上传不到文件夹,数据库也没有写入,图片无法显示。

问题描述

使用FileUpload控件上传图片,图片上传不到文件夹,数据库也没有写入图片的表,图片无法显示。但其他都正常,都能显示前台页面代码:<bodystyle="background-image:url(../images/right.png);background-repeat:no-repeat;"><formid="form1"runat="server"><div><br/><br/><br/><br/>&nbsp;<asp:DetailsViewID="DetailsView1"runat="server"AutoGenerateRows="False"DataKeyNames="news_id"DataSourceID="newsadd1"Height="352px"Width="700px"><Fields><asp:BoundFieldDataField="news_id"HeaderText="新闻编号"InsertVisible="False"ReadOnly="True"SortExpression="news_id"><HeaderStyleHeight="20px"Width="100px"/></asp:BoundField><asp:BoundFieldDataField="news_title"HeaderText="新闻标题"SortExpression="news_title"><HeaderStyleHeight="25px"/></asp:BoundField><asp:TemplateFieldHeaderText="新闻内容"SortExpression="news_content"><EditItemTemplate><asp:TextBoxID="TextBox1"runat="server"Text='<%#Bind("news_content")%>'Width="199px"></asp:TextBox></EditItemTemplate><InsertItemTemplate><CE:EditorID="Editor1"runat="server"AutoConfigure="Simple"AutoParseClasses="True"BorderColor="#C0C0C0"CodeViewTemplateItemList="Save,Print,Cut,Copy,Paste,Find,ToFullPage,FromFullPage,SelectAll"EditorOnPaste="ConfirmWord"MaxHTMLLength="0"MaxTextLength="0"Text='<%#Bind("news_content","{0}")%>'Width="550px"><FrameStyleBackColor="White"BorderColor="#C0C0C0"BorderStyle="Solid"BorderWidth="1px"CssClass="CuteEditorFrame"Height="100%"Width="550px"/></CE:Editor></InsertItemTemplate><ItemTemplate><asp:LabelID="Label1"runat="server"Text='<%#Bind("news_content")%>'></asp:Label></ItemTemplate></asp:TemplateField><asp:BoundFieldDataField="news_time"DataFormatString="{0:d}"HeaderText="发布时间"HtmlEncode="False"SortExpression="news_time"><HeaderStyleHeight="20px"/></asp:BoundField><asp:TemplateFieldHeaderText="新闻图片"SortExpression="news_photo"><EditItemTemplate><asp:TextBoxID="TextBox2"runat="server"Text='<%#Bind("news_photo")%>'></asp:TextBox></EditItemTemplate><InsertItemTemplate><asp:FileUploadID="FileUpload1"runat="server"/></InsertItemTemplate><ItemTemplate><asp:LabelID="Label2"runat="server"Text='<%#Bind("news_photo")%>'></asp:Label></ItemTemplate><HeaderStyleHeight="30px"/></asp:TemplateField><asp:BoundFieldDataField="news_author"HeaderText="新闻作者"SortExpression="news_author"><HeaderStyleHeight="20px"/></asp:BoundField><asp:CommandFieldButtonType="Button"ShowInsertButton="True"/></Fields></asp:DetailsView><asp:AccessDataSourceID="newsadd1"runat="server"DataFile="~/App_Data/jinhai.mdb"DeleteCommand="DELETEFROM[tb_news]WHERE[news_id]=?"InsertCommand="INSERTINTO[tb_news]([news_title],[news_content],[news_time],[news_author],[news_photo])VALUES(?,?,?,?,?)"SelectCommand="SELECT*FROM[tb_news]"UpdateCommand="UPDATE[tb_news]SET[news_title]=?,[news_content]=?,[news_time]=?,[news_author]=?,[news_photo]=?WHERE[news_id]=?"><DeleteParameters><asp:ParameterName="news_id"Type="Int32"/></DeleteParameters><UpdateParameters><asp:ParameterName="news_title"Type="String"/><asp:ParameterName="news_content"Type="String"/><asp:ParameterName="news_time"Type="DateTime"/><asp:ParameterName="news_author"Type="String"/><asp:ParameterName="news_photo"Type="String"/><asp:ParameterName="news_id"Type="Int32"/></UpdateParameters><InsertParameters><asp:ParameterName="news_title"Type="String"/><asp:ParameterName="news_content"Type="String"/><asp:ParameterName="news_time"Type="DateTime"/><asp:ParameterName="news_author"Type="String"/><asp:ParameterName="news_photo"Type="String"/></InsertParameters></asp:AccessDataSource></div></form></body>后台页面代码:usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Web.UI.HtmlControls;publicpartialclassadmin_newsadd:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){DetailsView1.DefaultMode=DetailsViewMode.Insert;}protectedvoidDetailsView1_PageIndexChanging(objectsender,DetailsViewPageEventArgse){}protectedvoidDetailsView1_ItemInserting(objectsender,DetailsViewInsertEventArgse){FileUploadfilel;filel=(FileUpload)DetailsView1.FindControl("fileupload1");stringfilePath;filePath=Server.MapPath("../newsimage/"+filel.FileName);filel.SaveAs(filePath);newsadd1.InsertParameters["news_photo"].DefaultValue=filel.FileName;}}

解决方案

解决方案二:
帮忙UP吧。。。没有异常提示吗?权限开了吗???断点看一下卡到哪里了,然后具体问题具体分析,这么COPY出来的代码很难帮您分析。。。
解决方案三:
看来只有调试了,光看代码也看不出个名堂来。

时间: 2024-09-25 17:45:07

使用FileUpload控件上传图片,上传不到文件夹,数据库也没有写入,图片无法显示。的相关文章

aspnet-Asp.net中不用fileupload控件如何上传文件?谢谢!

问题描述 Asp.net中不用fileupload控件如何上传文件?谢谢! Asp.net中不用fileupload控件,在知道客户端待上传的文件路径和文件名,如何上传文件?谢谢! 解决方案 http://bbs.csdn.net/topics/320051989

不用fileUpload控件如何上传文件?

问题描述 不用fileUpload控件如何上传文件? 解决方案 解决方案二:http://hi.baidu.com/kmiaoer/blog/item/da77ceef2b127a37acafd593.html解决方案三:看看~!收藏别人的,对你有帮助~~解决方案四:不用控件你可以开发客户端ActiveX控件来上传,类似现在网易.TOM相册那样的上传方式解决方案五:有好东西!解决方案六:加我QQ66516186发你DEMO解决方案七:用ftp

asp.net fileupload控件上传图片并预览图片_实用技巧

本文为大家分享了fileupload控件实现上传图片后并进行预览图片的功能,并对web.config进行了配置,先看一下最终效果: 页面代码: <form id="form1" runat="server"> <div> <asp:FileUpload ID="FileUpload1" runat="server" /> <asp:Button ID="Button1&quo

yii使用activeFileField控件实现上传文件与图片的方法_php实例

本文实例讲述了yii使用activeFileField控件实现上传文件与图片的方法.分享给大家供大家参考,具体如下: yii框架提供了activeFileField控件来完成上传文件(当然也包括了上传图片)的操作,下面介绍yii的activeFileField使用方法. 1.函数原型: 复制代码 代码如下: public static string activeFileField(CModel $model, string $attribute, array $htmlOptions=array

vb60-vb 怎么用winsoc控件 ftp上传下载文件

问题描述 vb 怎么用winsoc控件 ftp上传下载文件 急求 vb 怎么用winsock控件 ftp上传下载文件,还有没有其他的做法,简单就好 解决方案 inet 比较简单,winsock有固定API调用,网上很多 InetFTP.UserName = txtusername.Text InetFTP.Password = txtpassword.Text InetFTP.Execute host_name, "Get logxxxx" Do While InetFTP.Still

file控件选择上传文件确定后触发的js事件是哪个

  这篇文章主要介绍了file控件选择上传文件确定后触发了什么js事件,需要的朋友可以参考下 一直以来纠结于这个问题.今天闲来上网搜索了一下这个问题.终于知道答案.是onchange事件.经过本人测试,可用.还有说onpropertychange也可以.经chrome浏览器测试,无效果.不知道是什么原因.  

ploadify上传控件问题-.NET页面多个Uploadify上传控件,上传失败!

问题描述 .NET页面多个Uploadify上传控件,上传失败! 今天遇到一个很棘手的问题,我一个页面中加了四个Uploadify上传控件.但是点击浏览按钮时选择文件后之后排在最后一个的上传控件可以正常上传文件.其他几个上传控件都选择文件之后均没有反应!也没有报什么js错误,不知道什么原因,有遇到类似此类问题的同行吗?急等大家的指点!!! 解决方案 用fiddler调试下,有没有上传的数据产生,表单名字是什么,等等,看看你是不是脚本写错了.

android相机拍照后上传到指定文件夹,opencv是通过调用文件夹里图片进行处理的吗?

问题描述 android相机拍照后上传到指定文件夹,opencv是通过调用文件夹里图片进行处理的吗? 现在有一个Android拍照上传到指定文件夹的程序和一个opencv图像匹配的程序,能否通过修改某些语句和配置环境可以将两者结合?如果可以求大神赐教!(opencv是在文件夹选取图片进行匹配的.) 解决方案 可以直接调用文件夹里的图片处理,配置的话把路径配置成相对路径就可以了

dfs-本地文件上传到hadoop文件夹时出错。各路求助大神。

问题描述 本地文件上传到hadoop文件夹时出错.各路求助大神. 把本地文件上传到hadoop的文件下,本地上传文件后面出现 COPYING on client 127.0.0.1.然后在hadoop文件夹下面没有文件.大神求助啊.. $ bin/hdfs dfs -put etc/hadoop input2 15/08/25 10:14:26 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your pl