How can we fetch user's wall from facebook need sample code please
silentspeaker
Posts
-
facebook wall programatically -
Web CrawlerPlease help me How to create web crawler. what are the main things that could build a web crawler.
-
70-487 MaterialCan anyone send the links for ebook and preparation material of 70-487 Exam??
-
ASP.Net MVC 4?Hi, Please suggest me the links for the best books or videos for ASP.Net MVC 4. Thanks
-
70-480 Course BookAnyone plz help me to find 70-480 Book plz
-
70-513 Video Tutorial PleaseI searched but did not find any suitable tutorial
-
70-513 Video Tutorial Pleaseregarding 70-513, can any one help me to find good video tutorial?
thanks in advance
-
DAL?I need an efficient Data Access Layer
-
NTier architecturecan anyone help me regarding best N Tier architecture?
-
Starting Pointnettuts website
???
-
Starting PointFrom where to start programming on Open Source?
-
Cloud ComputingWhat is Cloud Computing???
-
HRM and PayrollAnyone have idea about Payroll Management System and Human Resource Management System in .net? Please guide me how can I Start these projects.
-
WebPart?What is WebPart, and whats the benefit of it?
-
How to implement Geo BlockHow I can block my site to some of the countries using asp.net? Need Assistance plz.
-
PHP, MySQL and ApacheWAMP is enough for the whole development envirnment? I am on the beginning level, so want to know more about it.
-
PHP, MySQL and ApacheHow to Install PHP
, MySQL and Apache
on my Machine?
-
larger file uploading issueI want to upload larger file but getting error:
Network Error (tcp_error)
A communication error occurred: ""
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.Sub UploadFile() Try Dim fileName As String = FulFile.PostedFile.FileName Dim requestFTP As WebRequest = WebRequest.Create("ftp:....................../" & fileName) requestFTP.Credentials = New NetworkCredential("User ID", "Password") requestFTP.Method = WebRequestMethods.Ftp.UploadFile Dim bufferLength As Integer = 2048 Dim buffer As Byte() = New Byte(bufferLength - 1) {} Dim uploadStream As Stream = requestFTP.GetRequestStream() Dim contentLength As Integer = FulFile.PostedFile.InputStream.Read(buffer, 0, bufferLength) While contentLength <> 0 uploadStream.Write(buffer, 0, contentLength) contentLength = FulFile.PostedFile.InputStream.Read(buffer, 0, bufferLength) End While FulFile.PostedFile.InputStream.Close() requestFTP = Nothing LblMsg.Text = "File Uploading Is SuccessFull..." Catch ep As Exception LblMsg.Text = ep.Message End Try End Sub
-
Unable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream'GetResponse and requestFTP what are these and how can we upload using GetResponse and requestFTP bcoz it showing that
Network Error (tcp_error)
A communication error occurred: ""
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time. -
Unable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream'Hi,
I want to upload browsed file to the ftp server but getting this errorSub UploadFile()
Try Dim fileName As String = FulFile.PostedFile.FileName Dim requestFTP As WebRequest = WebRequest.Create("ftp://...................." & fileName) requestFTP.Credentials = New NetworkCredential("userid", "password") requestFTP.Method = WebRequestMethods.Ftp.UploadFile Dim fStream As FileStream = FulFile.PostedFile.InputStream 'Error:Unable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream'. Dim bufferLength As Integer = 2048 Dim buffer As Byte() = New Byte(bufferLength - 1) {} Dim uploadStream As Stream = requestFTP.GetRequestStream() Dim contentLength As Integer = fStream.Read(buffer, 0, bufferLength) While contentLength <> 0 uploadStream.Write(buffer, 0, contentLength) contentLength = fStream.Read(buffer, 0, bufferLength) End While uploadStream.Close() fStream.Close() requestFTP = Nothing LblMsg.Text = "File Uploading Is SuccessFull..." Catch ep As Exception LblMsg.Text = ep.Message End Try End Sub