Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

silentspeaker

@silentspeaker
About
Posts
27
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • facebook wall programatically
    S silentspeaker

    How can we fetch user's wall from facebook need sample code please

    Windows API

  • Web Crawler
    S silentspeaker

    Please help me How to create web crawler. what are the main things that could build a web crawler.

    ASP.NET help tutorial

  • 70-487 Material
    S silentspeaker

    Can anyone send the links for ebook and preparation material of 70-487 Exam??

    ASP.NET question

  • ASP.Net MVC 4?
    S silentspeaker

    Hi, Please suggest me the links for the best books or videos for ASP.Net MVC 4. Thanks

    ASP.NET asp-net csharp architecture question

  • 70-480 Course Book
    S silentspeaker

    Anyone plz help me to find 70-480 Book plz

    ASP.NET learning help

  • 70-513 Video Tutorial Please
    S silentspeaker

    I searched but did not find any suitable tutorial

    ASP.NET help tutorial question

  • 70-513 Video Tutorial Please
    S silentspeaker

    regarding 70-513, can any one help me to find good video tutorial?

    thanks in advance

    ASP.NET help tutorial question

  • DAL?
    S silentspeaker

    I need an efficient Data Access Layer

    Free Tools question

  • NTier architecture
    S silentspeaker

    can anyone help me regarding best N Tier architecture?

    Free Tools architecture help question

  • Starting Point
    S silentspeaker

    nettuts website

    ???

    Linux, Apache, MySQL, PHP question

  • Starting Point
    S silentspeaker

    From where to start programming on Open Source?

    Linux, Apache, MySQL, PHP question

  • Cloud Computing
    S silentspeaker

    What is Cloud Computing???

    Cloud Computing question hosting cloud

  • HRM and Payroll
    S silentspeaker

    Anyone have idea about Payroll Management System and Human Resource Management System in .net? Please guide me how can I Start these projects.

    ASP.NET question csharp tutorial learning

  • WebPart?
    S silentspeaker

    What is WebPart, and whats the benefit of it?

    SharePoint question

  • How to implement Geo Block
    S silentspeaker

    How I can block my site to some of the countries using asp.net? Need Assistance plz.

    ASP.NET csharp asp-net tutorial question

  • PHP, MySQL and Apache
    S silentspeaker

    WAMP is enough for the whole development envirnment? I am on the beginning level, so want to know more about it.

    Linux, Apache, MySQL, PHP php apache mysql tutorial question

  • PHP, MySQL and Apache
    S silentspeaker

    How to Install PHP

    , MySQL and Apache

    on my Machine?

    Linux, Apache, MySQL, PHP php apache mysql tutorial question

  • larger file uploading issue
    S silentspeaker

    I 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
    
    ASP.NET sysadmin help

  • Unable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream'
    S silentspeaker

    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.

    ASP.NET sysadmin help

  • Unable to cast object of type 'System.Web.HttpInputStream' to type 'System.IO.FileStream'
    S silentspeaker

    Hi,
    I want to upload browsed file to the ftp server but getting this error

    Sub 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
    
    ASP.NET sysadmin help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups