ASP.net default login.aspx page missing images

shredder

I am using the default ASP.Net Web Application in visual studio 2010. When starting the site and going to the login page, it is missing all of the graphics. After logging in the graphics return.

I have tried adding exceptions for the path in web.config with no luck. Maybe I have the wrong path? I am using the default styles.

<authentication mode="Forms">
  <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
</authentication>

<authorization>
  <deny users="?" />
</authorization>
...

<location path="~/Account/Login.aspx">
<system.web>
  <authorization>
    <allow users="*"/>
  </authorization>
</system.web>
</location>

The site is the default new ASP.Net Web Application in visual studio 2010 plus in the web.config

shredder

It was a formatting/syntax issue.

When allow access in Web.config it should be:

<location path="Styles">

Not

<location path="~/Styles">

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

ASP.Net aspxerrorpath=/Login.aspx

From Dev

HTTPS for only one ASP.NET page (Login.aspx), HTTP always for rest of site

From Dev

ASP.NET MVC4 with webforms Default.aspx as the start page

From Dev

Create a form on an ASPX page in asp.net

From Dev

ASP.NET: Call .swf in .aspx page

From Dev

Regex not working in asp.net(.aspx page)

From Dev

How do I change the ASP.NET MVC default login page to login by username instead of email address?

From Dev

Protractor, login to asp,net MVC login page, wait for default page then , redirect to angular page and do tests....how?

From Dev

aspx.net login page with rds database via Mysql workbench

From Dev

Login page for asp.net page

From Dev

Login page for asp.net page

From Dev

ASP.NET Web Application Does not Autoredirect to Default.aspx

From Dev

asp.net forms authentication occasionally redirects to default.aspx

From Dev

why default page open directly when login using asp.net using?

From Dev

Refresh aspx page in ASP.NET tab panel

From Dev

Integrating a ASP.NET (.aspx) page into a existing Lightswitch project

From Dev

Jqgrid with asp.net [WebMethod] inside aspx page Issue

From Dev

How to return response to .aspx page from Handler in asp.net

From Dev

Refresh aspx page in ASP.NET tab panel

From Dev

images are not displayed on aspx web page

From Dev

Login page in asp.net. Issue with query?

From Dev

Redirect to login page asp.net

From Dev

Login page not working in vb asp.net

From Dev

Redirect to login page asp.net

From Dev

Swapping images on Asp.net page

From Dev

MVC and aspx - setting the default page

From Dev

Setting default .aspx page access?

From Dev

How to set default page asp.net

From Dev

ASP.NET WebAPI default landing page

Related Related

  1. 1

    ASP.Net aspxerrorpath=/Login.aspx

  2. 2

    HTTPS for only one ASP.NET page (Login.aspx), HTTP always for rest of site

  3. 3

    ASP.NET MVC4 with webforms Default.aspx as the start page

  4. 4

    Create a form on an ASPX page in asp.net

  5. 5

    ASP.NET: Call .swf in .aspx page

  6. 6

    Regex not working in asp.net(.aspx page)

  7. 7

    How do I change the ASP.NET MVC default login page to login by username instead of email address?

  8. 8

    Protractor, login to asp,net MVC login page, wait for default page then , redirect to angular page and do tests....how?

  9. 9

    aspx.net login page with rds database via Mysql workbench

  10. 10

    Login page for asp.net page

  11. 11

    Login page for asp.net page

  12. 12

    ASP.NET Web Application Does not Autoredirect to Default.aspx

  13. 13

    asp.net forms authentication occasionally redirects to default.aspx

  14. 14

    why default page open directly when login using asp.net using?

  15. 15

    Refresh aspx page in ASP.NET tab panel

  16. 16

    Integrating a ASP.NET (.aspx) page into a existing Lightswitch project

  17. 17

    Jqgrid with asp.net [WebMethod] inside aspx page Issue

  18. 18

    How to return response to .aspx page from Handler in asp.net

  19. 19

    Refresh aspx page in ASP.NET tab panel

  20. 20

    images are not displayed on aspx web page

  21. 21

    Login page in asp.net. Issue with query?

  22. 22

    Redirect to login page asp.net

  23. 23

    Login page not working in vb asp.net

  24. 24

    Redirect to login page asp.net

  25. 25

    Swapping images on Asp.net page

  26. 26

    MVC and aspx - setting the default page

  27. 27

    Setting default .aspx page access?

  28. 28

    How to set default page asp.net

  29. 29

    ASP.NET WebAPI default landing page

HotTag

Archive