Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

c# save pdf to folder

protected void save_pdf()
{
   String path_name = "~/PDF/";
   var pdfPath = Path.Combine(Server.MapPath(path_name));
   var formFieldMap = PDFHelper.GetFormFieldNames(pdfPath);

   string username = "Test";
   string password = "12345";      
   String file_name_pdf = "Test.pdf";

   var pdfContents = PDFHelper.GeneratePDF(pdfPath, formFieldMap);

   File.WriteAllBytes(Path.Combine(pdfPath, file_name_pdf), pdfContents);

   WebRequest request = WebRequest.Create(Server.MapPath("~/PDF/" + pdfContents));
   request.Method = WebRequestMethods.Ftp.UploadFile;

   request.Credentials = new NetworkCredential(username, password);
   Stream reqStream = request.GetRequestStream();
   reqStream.Close();
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: contains char c# 
Csharp :: c# get char from string 
Csharp :: how to make dictionary c# 
Csharp :: unity raycast 2d 
Csharp :: foreach enum 
Csharp :: unity exception 
Csharp :: c# how to call a method from another class 
Csharp :: unity ui movement 
Csharp :: hide button unity 
Csharp :: c# find substring in string 
Csharp :: HOW TO RETURN CELL VALUE FROM EXCEL IN C# 
Csharp :: turn list of string to csv c# 
Csharp :: play animation through script unity 
Csharp :: c# get folder path from file path 
Csharp :: ef rollback migration 
Csharp :: unity sound 
Csharp :: check if file exist c# 
Csharp :: wpf messagebox result 
Csharp :: How can I return image from controller asp.net 
Csharp :: unity find child by name 
Csharp :: C# monogodb 
Csharp :: checking if character is a digit or not in c# 
Csharp :: c# how to check if a array bool is all true 
Csharp :: c# bubble sort 
Csharp :: c# find value in datagridview 
Csharp :: c# enum 
Csharp :: methods c# 
Csharp :: print all complete object in list c# 
Csharp :: convert int32 
Csharp :: c# read large file 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =