ASP Upload

Discussion in 'ASP.NET / ASP.NET Core' started by brinex, Jan 13, 2006.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I'm trying to use ASPUpload. I keep getting this .NET error even though I've copied the exact sample code. This works fine on my webserver at home. Could this be a permission issue?


    Active Server Pages error 'ASP 0221'
    Invalid @ Command directive
    /error/404.aspx, line 1
    The specified 'Page Language="VB" Debug="True" ' option is unknown or invalid.
    Persits.Upload.1 error '800a0006'
    There is not enough space on the disk.
    /secure/extra/aspupload1.asp, line 5


    Here is my code:


    <%
    Set Upload = Server.CreateObject("Persits.Upload")
    count = upload.savevirtual ("/")
    Response.Write Count &amp; " file(s) uploaded"
    %>
     
  2. For the error:
    Persits.Upload.1 error '800a0006'
    There is not enough space on the disk.
    /secure/extra/aspupload1.asp, line 5

    Check your site's IUSR disk quota in the User/Quota Manager of the control panel. Make sure that it has enough free disk space to work with for uploading files.


    For the error:
    Invalid @ Command directive
    /error/404.aspx, line 1
    The specified 'Page Language='VB' Debug='True' ' option is unknown or invalid.

    I'm assuming that this is unrelated to your ASPUpload error, as both of these errors should not show up at the same time. The cause of this is that you have an ASP.NET 2.0 application but your site's .NET framework is set to 1.1. You can change the .NET framework in the IIS Manager of the control panel.

    DiscountASP.NET
    www.DiscountASP.NET
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page