put aspx files online

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default RE: put aspx files online

    Can you post the detailed err. msg?

    --
    G.


    "Marichael Davy" wrote:
    > hi there,
    >
    > i've got a simple order form (.aspx) with a class file (.vb)
    > I want to put these online.. what of these files do i need?
    >
    > [url]http://test.hesse.be/NL/contact/bestellingen.aspx[/url]
    >
    > I get this error all the time :(
    > On my localhost on my pc it works great!
    >
    > The server supports asp so i dont know what the problem is..
    >
    > Please help me!
    >
    >
    >
    Georgi Vajarov Guest

  2. Similar Questions and Discussions

    1. Urgent: Online files accessing local files Issue
      Hi.. We are working on a online project where we have some 600 MB videos. The complete project is made using flash & HTML.
    2. How to Deploy aspx files
      Hi everybody, I'm a new be for ASP .NET. I made a simple project (C# coded web project) and I want to deploy it to my web site. My project...
    3. Templates + aspx files
      i've created a dreamweaver template wich use microsoft user controls i applyed it to all my pages and everything goes fantastic. it looks like: <%@...
    4. .aspx files don't work
      I have been having some trouble with my web server running under Windows 2000 Server, so I removed IIS and reinstalled it. Now, I noticed that my...
    5. Variable JIT of ASPX files?
      As I understand it, when the first page of an application is accessed, all ASPX/ASCX/etc. files in the same folder are compiled using the JIT...
  3. #2

    Default Re: put aspx files online


    Server Error in '/' Application.
    ----------------------------------------------------------------------------
    ----

    Runtime Error
    Description: An application error occurred on the server. The current custom
    error settings for this application prevent the details of the application
    error from being viewed remotely (for security reasons). It could, however,
    be viewed by browsers running on the local server machine.

    Details: To enable the details of this specific error message to be viewable
    on remote machines, please create a <customErrors> tag within a "web.config"
    configuration file located in the root directory of the current web
    application. This <customErrors> tag should then have its "mode" attribute
    set to "Off".


    <!-- Web.Config Configuration File -->

    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>


    Notes: The current error page you are seeing can be replaced by a custom
    error page by modifying the "defaultRedirect" attribute of the application's
    <customErrors> configuration tag to point to a custom error page URL.


    <!-- Web.Config Configuration File -->

    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>







    "Georgi Vajarov" <GeorgiVajarov@discussions.microsoft.com> schreef in
    bericht news:C0446578-1BE4-4C55-B69C-8A9E099B7275@microsoft.com...
    > Can you post the detailed err. msg?
    >
    > --
    > G.
    >
    >
    > "Marichael Davy" wrote:
    >
    > > hi there,
    > >
    > > i've got a simple order form (.aspx) with a class file (.vb)
    > > I want to put these online.. what of these files do i need?
    > >
    > > [url]http://test.hesse.be/NL/contact/bestellingen.aspx[/url]
    > >
    > > I get this error all the time :(
    > > On my localhost on my pc it works great!
    > >
    > > The server supports asp so i dont know what the problem is..
    > >
    > > Please help me!
    > >
    > >
    > >

    Marichael Davy Guest

  4. #3

    Default Re: put aspx files online

    Maybe I wasn’t clear – Can you post the detail err msg from your debugger in
    VS. – The message here is seen by anyone running .net framework on their
    machine but it doesn’t give you any detail.
    --
    G.


    "Marichael Davy" wrote:
    >
    > Server Error in '/' Application.
    > ----------------------------------------------------------------------------
    > ----
    >
    > Runtime Error
    > Description: An application error occurred on the server. The current custom
    > error settings for this application prevent the details of the application
    > error from being viewed remotely (for security reasons). It could, however,
    > be viewed by browsers running on the local server machine.
    >
    > Details: To enable the details of this specific error message to be viewable
    > on remote machines, please create a <customErrors> tag within a "web.config"
    > configuration file located in the root directory of the current web
    > application. This <customErrors> tag should then have its "mode" attribute
    > set to "Off".
    >
    >
    > <!-- Web.Config Configuration File -->
    >
    > <configuration>
    > <system.web>
    > <customErrors mode="Off"/>
    > </system.web>
    > </configuration>
    >
    >
    > Notes: The current error page you are seeing can be replaced by a custom
    > error page by modifying the "defaultRedirect" attribute of the application's
    > <customErrors> configuration tag to point to a custom error page URL.
    >
    >
    > <!-- Web.Config Configuration File -->
    >
    > <configuration>
    > <system.web>
    > <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    > </system.web>
    > </configuration>
    >
    >
    >
    >
    >
    >
    >
    > "Georgi Vajarov" <GeorgiVajarov@discussions.microsoft.com> schreef in
    > bericht news:C0446578-1BE4-4C55-B69C-8A9E099B7275@microsoft.com...
    > > Can you post the detailed err. msg?
    > >
    > > --
    > > G.
    > >
    > >
    > > "Marichael Davy" wrote:
    > >
    > > > hi there,
    > > >
    > > > i've got a simple order form (.aspx) with a class file (.vb)
    > > > I want to put these online.. what of these files do i need?
    > > >
    > > > [url]http://test.hesse.be/NL/contact/bestellingen.aspx[/url]
    > > >
    > > > I get this error all the time :(
    > > > On my localhost on my pc it works great!
    > > >
    > > > The server supports asp so i dont know what the problem is..
    > > >
    > > > Please help me!
    > > >
    > > >
    > > >
    >
    >
    >
    Georgi Vajarov Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139