I can normally use iTextSharp on local system. Actually there's a simple pdf file that i create with iTextsharp but when i deployed my application on server i am getting the following error:
Compiler Error Message: CS0246: The type or namespace name 'iTextSharp' could not be found (are you missing a using directive or an assembly reference?
I added an reference to iTextSharp.dll during the development of my project and it was working normally but don't know what's wrong with it when i run it on my web server. Has anybody experienced/fixed this problem? Below are my using statements:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using iTextSharp;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.Globalization;