会话错误中的fileupload.postefile [英] fileupload.postefile in session error

查看:60
本文介绍了会话错误中的fileupload.postefile的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个代码,我应该将fileupload.PostedFile存储到会话中,但是当我尝试回忆它时,得到一个错误,



这里代码:

i have a code which i should store the fileupload.PostedFile to session, but when i try to recall it, got a Error,

here the code :

if (fuFiles.HasFile)
                        {
                            string v_strFileExtension = System.IO.Path.GetExtension(fuFiles.FileName);
                            string strFileNameSavedAs = v_strChartId + v_strFileExtension;


                            fuFiles.PostedFile.SaveAs(Server.MapPath("~/" + m_strChartShareImageBaseUrl + strFileNameSavedAs));


                            objData = new tbtchartsharing();
                            objData.idchart = Convert.ToInt32(v_strChartId);
                            objData.iduser = m_strIdGods;

                            //disini juga.
                            objData.cdstock = temp;
                            objData.usercomment = txtShout.Text;//txtShout.Text;
                            objData.dateupload = DateTime.Now;
                            objData.status = "V"; //Viewed, and share

                            objData.filename = strFileNameSavedAs;


                            objBLChartSharing.InsertChartSharing(objData);

                            objGodsFeed.chartsharingcd = objData.idchart;

                            Session["Image"] = fuFiles.FileName;
                        }





这里的错误。



and here the error.

Server Error in '/TgUi' Application.

Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Web.HttpException: Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 


[SerializationException: Type 'System.Web.HttpPostedFile' in Assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' is not marked as serializable.]
   System.Runtime.Serialization.FormatterServices.InternalGetSerializableMembers(RuntimeType type) +10554876
   System.Runtime.Serialization.FormatterServices.GetSerializableMembers(Type type, StreamingContext context) +305
   System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitMemberInfo() +187
   System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter) +243
   System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck) +1115
   System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers, Boolean fCheck) +231
   System.Web.Util.AltSerialization.WriteValueToStream(Object value, BinaryWriter writer) +2049

[HttpException (0x80004005): Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.]
   System.Web.Util.AltSerialization.WriteValueToStream(Object value, BinaryWriter writer) +1712989
   System.Web.SessionState.SessionStateItemCollection.WriteValueToStreamWithAssert(Object value, BinaryWriter writer) +49
   System.Web.SessionState.SessionStateItemCollection.Serialize(BinaryWriter writer) +745
   System.Web.SessionState.SessionStateUtility.Serialize(SessionStateStoreData item, Stream stream) +258
   System.Web.SessionState.SessionStateUtility.SerializeStoreData(SessionStateStoreData item, Int32 initialStreamSize, Byte[]& buf, Int32& length) +80
   System.Web.SessionState.OutOfProcSessionStateStore.SetAndReleaseItemExclusive(HttpContext context, String id, SessionStateStoreData item, Object lockId, Boolean newItem) +3009519
   System.Web.SessionState.SessionStateModule.OnReleaseState(Object source, EventArgs eventArgs) +775
   System.Web.SessionState.SessionStateModule.OnEndRequest(Object source, EventArgs eventArgs) +152
   System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +171





谢谢。



thanks.

推荐答案

在我看来,不要把文件放在会话中。暂时将它放在文件夹中的某个位置。

如果您以后不想这样,那么只需从该位置删除它。
In my opinion, don't put the File in Session. Just put it somewhere in a folder temporarily.
In case you don't want that later, then simply delete that from that location.


这篇关于会话错误中的fileupload.postefile的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆