Re: Form Authentication question

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



On Mar 5, 1:45 pm, ckk...@xxxxxxxxxxx wrote:
Dear All,

ASPNET 1.1 web page using Form authentication.

I have a need to display more than one aspx pages before the user
login (not *.html but *.aspx pages).

Is it possible?

You can use <location> configuration in the web.config file to skip
authentication for the specific file

<location path="default.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>

where * is used to denote "all users". Or use ? to allow an anonymous
user to access the page.
.



Relevant Pages

  • Re: Solution while process is running
    ... long running task on the same aspx page. ... >> redirect the user to a new page and display an animated gif indicating ... >> processing is occurring, and when complete, redirect back to the previous ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: binary image
    ... You need to create a .aspx that returns only the image and use the ... In another web page you want to display the image with the id of 1. ... from some data store such as a database. ... I'm trying to use this as a user control to ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: Problem understand code behind
    ... When you use VBNet with the Visual Studio Net IDE (Integrated Development ... Environment) than you have with ASPNET for every form at least two things. ... The compiled DLL is in intermidiate language code, ... I think that it is often easy possible to get an aspx page completly from a ...
    (microsoft.public.dotnet.languages.vb)
  • Re: Protect file with different extension from .aspx
    ... Create an ASPX page that'll download the file to the user. ... Now you can still use form authentication. ... I did a similar thing for a client that wanted images sent from an AS/400 ...
    (microsoft.public.dotnet.framework.aspnet.security)
  • Re: how to show an Image field from a SQL Server table field to a aspx page
    ... IE does not support inline images. ... then you write an aspx page that display the image. ... > using a datagrid to show the result. ...
    (microsoft.public.dotnet.framework.aspnet)