|  | 
	
	
	| Rank: Newbie Groups: Member
 
 Joined: 6/4/2012
 Posts: 2
 
 | 
		    I apologize if this question has an obvious answer. I just purchased this product and at the bottom of the pdf file that is created there is a line: Create with EO.Pdf for .NET. http://www.essentialobjects.com . Is there a way to remove this line? My code is pretty basic.
 
    
        Code: C#
         //Set the response header
        HttpResponse response = HttpContext.Current.Response;
        response.Clear();
        response.ClearHeaders();
        response.ContentType = "application/pdf";
        //license agreement
        EO.Pdf.Runtime.AddLicense("My license code");
        //Convert to the output stream
        EO.Pdf.HtmlToPdf.ConvertUrl(html, response.OutputStream);
        response.End(); Thanks, M
		 | 
|  | 
	
	
	| Rank: Administration Groups: Administration
 
 Joined: 5/27/2007
 Posts: 24,425
 
 | 
		    Hi,
 Make sure your license key version matches the version of EO.Pdf you use. There are two different releases: EO.Pdf 2011.2 (which has a DLL version number 3.0.x.2) and EO.Pdf 2012 (which has a DLL version number 4.0.x.2). We give you keys for both versions, but the key has to match the DLL.
 
 Thanks!
 | 
|  | 
	
	
	| Rank: Newbie Groups: Member
 
 Joined: 6/4/2012
 Posts: 2
 
 | 
		    Ah! Thanks! I was using the wrong version.
		 | 
|  | 
	
	
	| Rank: Administration Groups: Administration
 
 Joined: 5/27/2007
 Posts: 24,425
 
 | 
		    Great. Glad to hear that it works for you. Please feel free to let us know if you have any more questions.
		 | 
|  |