Click here to Skip to main content
15,908,013 members

Comments by Mayank_1986 (Top 7 by date)

Mayank_1986 17-Jun-15 1:05am View    
yes...
Mayank_1986 15-Jun-15 6:10am View    
I have already parse the filter expression but it seems that there are some limitation for filter expression in DataView.
Also in this the code is not going to catch block...
Mayank_1986 4-Jun-15 2:35am View    
I have not seen any option available on IIS 6.0 to redirect on HTTPS.
Mayank_1986 14-May-15 3:26am View    
i am using this code
using (WebClient wc = new WebClient())
{
wc.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
byte[] byteResult = wc.UploadData("http://www.myweburl.com/TempPdf/", "POST", buffer);

}

and got following error
The remote server returned an error: (405) Method Not Allowed.

I have already set permission "Everyone" to "TempPdf" directory
Mayank_1986 14-May-15 3:16am View    
I have written a console application which process some .PDF files available on ftp location. Now after successful process, the PDF files should be copied to on a web application hosted on another server where authenticated user can view the processed PDF files.
I have successfully processed the files from my console application which is scheduled on server and runs twice in a day, but not able to save a copy of successfully processed.