vad är detta för något ? Verkar vara som så at VS inte vill köra från min server. Flyttade projektet till mitt skrivbord så funkade det. Kör jag från IE så funkar det också.Request for the permission of type 'System.Security.Permissions.FileIOPermissio
<code>
Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
</code>
Försöker bara få en bild till en PDF.
<code>
Dim document As New Document(PageSize.A4)
Dim writer As PdfWriter = PdfWriter.GetInstance(document, New FileStream("C:\myimg.pdf", FileMode.Create))
document.Open()
'===========DETTA ORSAKAR FELMEDDELANDE===================
Dim jpeg As iTextSharp.text.Image = iTextSharp.text.Image.GetInstance("C:\update.gif")
'===========DETTA ORSAKAR FELMEDDELANDE===================
jpeg.ScaleToFit(PageSize.A4.Width, PageSize.A4.Height)
document.Add(jpeg)
document.Close()
</code>Sv: Request for the permission of type 'System.Security.Permissions.FileIOPermi