Prego...
Ha funzionato? Fammi sapere.

Ciao, Ricky.

Ing. Riccardo Golia
Microsoft MVP ASP.NET/IIS
ASPItalia.com Content Manager
http://blogs.aspitalia.com/rickyvr
http://ricky.aspitalia.com
http://www.riccardogolia.it
1.245 messaggi dal 03 marzo 2004
La compilazione funziona... ho uno strano errore quando cerco di uplodare il file...
Ho modificato il codice, aggiungendo una label (Msg) dove scrivevo il punto del probabile crash...
private void Button1_Click(object sender, System.EventArgs e)
    {
      try 
      {
        if ((! (Lfile.PostedFile == null)) && (Lfile.PostedFile.ContentType.Substring(0, 5) == "image"))
        {
          HttpImgUpload objUpload = new HttpImgUpload (Lfile.PostedFile, System.Configuration.ConfigurationSettings.AppSettings["UploadFolder"], "test.jpg", 250000, 300, 300); 
          objUpload.DestinationFolder = System.Configuration.ConfigurationSettings.AppSettings["UploadFolder"]; // opzionale 
          objUpload.ImageFilename = "test.jpg"; // opzionale 
          objUpload.Format = System.Drawing.Imaging.ImageFormat.Jpeg;
          objUpload.SaveImage();
        }
        else
        {
          Msg.Text="La if va su else";
        }
      }
      catch
      {
        Msg.Text="il true della if manda tutto in crash";
      }
      finally
      {
        Msg.Text="Upload NON eseguito mi sa che va in crash pure il chatch";
      }
    }


La cosa strana è che in fase di esecuzione va in errore nella prima parte e non finisce nel catch.

Se provo ad inserire un file .jpg, quando clicco mi esce questo:
Server Error in '/upload2' Application.
--------------------------------------------------------------------------------

File or assembly name System.Drawing, or one of its dependencies, was not found. 
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.IO.FileNotFoundException: File or assembly name System.Drawing, or one of its dependencies, was not found.

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.  

Assembly Load Trace: The following information can be helpful to determine why the assembly 'System.Drawing' could not be loaded.


Non è che system.drawing non sia supportato dal framework 1.0 che utilizzo?

L'infinito è... ASP.NET
La dll è compilata con la versione 2003. Se ti serve al limite ti mando il codice, così te lo metti direttamente dentro il tuo progetto.

Fammi sapere.

Ciao, Ricky.

Ing. Riccardo Golia
Microsoft MVP ASP.NET/IIS
ASPItalia.com Content Manager
http://blogs.aspitalia.com/rickyvr
http://ricky.aspitalia.com
http://www.riccardogolia.it
1.245 messaggi dal 03 marzo 2004
Ok, Grazie mille
Mandalo pure all'indirizzo da cui ti ho mandato la mail l'altro giorno.

Ciao
Sonia

L'infinito è... ASP.NET
Quale è l'indirizzo, scusa? Non ce l'ho qua.
Mi mandi una mail che ti faccio il reply? Grazie.

Ciao, Ricky.

Ing. Riccardo Golia
Microsoft MVP ASP.NET/IIS
ASPItalia.com Content Manager
http://blogs.aspitalia.com/rickyvr
http://ricky.aspitalia.com
http://www.riccardogolia.it
1.245 messaggi dal 03 marzo 2004
Devo sistemare alcune cose... ma FUNZIONA
Grazie mille per la disponibilità!

L'infinito è... ASP.NET
Non avevo dubbi in merito...

Ciao, Ricky.

Ing. Riccardo Golia
Microsoft MVP ASP.NET/IIS
ASPItalia.com Content Manager
http://blogs.aspitalia.com/rickyvr
http://ricky.aspitalia.com
http://www.riccardogolia.it
1.245 messaggi dal 03 marzo 2004
Altra domandina...

Con questo codice:
HttpImgUpload objUpload = new HttpImgUpload (Lfile.PostedFile, System.Configuration.ConfigurationSettings.AppSettings["UploadFolder"], "foto1.jpg", 25000, 300, 300); 


300 e 300 sono le dimensioni fisiche del file... se io volessi che venissero accettati non solo i file di 300x300 ma quelli al di sotto di 300x300 come devo fare???
Ho provato con <300 ma ovviamente mi da errore!

L'infinito è... ASP.NET

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.