Tagged Questions
0
votes
1answer
26 views
How to redirect to login screen if not logged in for certain web pages
So I have a login.aspx and it is set up so that all forms redirect to the login page if you are not logged in. This site is suppose to be public, no login is required except if you are admin and want ...
0
votes
0answers
37 views
Accessing login page appends ReturnUrl on IIS?
I have a webforms application configured to use forms authentication. It works on my development machine but since I configured it on IIS, I get a ReturnUrl on my login page with the application name, ...
2
votes
0answers
66 views
How can I configure site Authorization for an MVC site with Web Forms components?
I have an MVC site where I need to use the ReportViewer control to integrate with SSRS. This means I need to have a Web Forms page within the site specifically for dealing with reports. Thankfully ...
2
votes
2answers
160 views
Allow roles not working but allow users working in web.config
I implemented asp.net membership for forms authentication. Generally for login it is used username, but i changed this to login with email id. Which is working fine. Now i am trying to restrict access ...
2
votes
1answer
82 views
Deny access to a webpage using web.config
I have searched Google & SO posts, but could not get any results that solved my issue.
My web.config is:
<location path="~/reports/PayPeriodQtrReport.aspx, ...
2
votes
1answer
94 views
Error in web.config “location”
My site has 2 logins. 1 on the front end for regular users, and one in the admin section, for admins (I need 2 logins because each one asks for different login criteria). To authenticate the admin ...
0
votes
0answers
147 views
ASP.NET MVC ReturnUrl confusion when application is hosted as a virtual directory under a site
I was hoping that somebody could shed some light on how to get around a ReturnUrl issue that I am having. I have an ASP.NET MVC 4 web application that I had running under the default website and ...
0
votes
2answers
30 views
Why Authentication URL is not rendering properly
My Code :
<authentication mode="Forms">
<forms loginUrl="~/CRMLogin/LogOn" timeout="2880"/>
</authentication>
I want this :
...
0
votes
2answers
447 views
Web API anonymous service access with forms authentication
I am trying to determine how to configure access to a Web API controller service under forms authentication. If I add authorization configuration to deny all anonymous users by adding the ...
0
votes
0answers
76 views
web.config - allow access from docs.google.com on restricted location
I have restricted access to files in a folder to anyone, but authenticated users, by adding this to the web.config:
<system.web>
<authorization>
<deny users="?"/>
...
1
vote
1answer
124 views
IIS Restrict Access to Directory for table of users
I am trying to restrict access to files in a directory and it's sub directories based user rights. My user rights are stored in an MS SQL database in a custom format, however it is easy to query the ...
1
vote
2answers
347 views
Configuring IIS with Powerhsell - Enable Forms Authentication
My IIS looks like this:
Sites ->
Default Web Site ->
MyWebApp
Then the question is: How do I enable Forms Authentication on MyWebApp? I mange to change or ...
3
votes
2answers
147 views
Using role authentication without the “Membership” table
I'm using Forms Authentication and I want to restrict certain pages to certain roles. Right now everyone has access to the entire application once logged in.
But I'd like to restrict certain pages to ...
1
vote
1answer
2k views
How to lock down paths in ASP.NET MVC 4?
I'm playing around with MVC 4 for the first time to check out what's been changed/added/etc compared to MVC 3.
To start off, I created a blank MVC 4 Web Application and started building from scratch.
...
0
votes
1answer
152 views
How do I allow anonymous users to access an image?
I'm currently working on an ASP.NET website that uses Forms Authentication to restrict access to some files (~/resources/restricted/*) a user needs to register to see. Unfortunately, this has the ...
0
votes
0answers
46 views
Different redirect URLs for different roles
I have a set of pages in my account folder, a page that says "You must activate your account", and another that says "access denied". I also have three roles: Unfilled, User and Advanced User.
I want ...
0
votes
0answers
236 views
Login Form inside a page built from Master Page
My solutions is divided as follows:
[Root Directory]
Default.aspx
Page.Master
web.config
[Webstore] (inside Root Directory)
Page1.aspx
Page2.aspx
[Admin] (inside Root Directory)
...
1
vote
2answers
478 views
Conditional location authorization in web.config?
In IIS 7.5 web.config we can set authorization for various paths/folders like so:
<location path="logs/elmah/elmah.axd">
<system.web>
<authorization>
<allow ...
0
votes
0answers
272 views
Login form doesn't fire the “Authenticate” event
I'm trying to authenticate users in my webstore without success.
The Login.aspx page was placed at the /admin folder (not root
directory of my solution), and I just want to protect this folder
...
1
vote
0answers
549 views
asp.net forms authentication: public folder not allowing application access
I have a website that I've recently set up with asp.net forms authentication. It is authenticating through Active Directory. On the website are two folders which I've made public using location tags ...
0
votes
4answers
528 views
Running a website in a sub-folder using a separate web.config?
I was wondering if it is possible to run an aspx.net website in a sub folder if it has it's own web.config with forms auth and is using a role mananger?
4
votes
2answers
665 views
Intermittent 401 and 302 Errors on Static Files
I'm developing a website for a client of ours and have been having a nagging issue for weeks. The problem is intermittent and might happen twice in a day or once in 2 weeks.
When it happens, the ...
0
votes
1answer
247 views
Forms authentication - changing loginUrl at runtime
I have something like this in my web.config:
<authentication mode="Forms">
<forms loginUrl="MyVirtualDirectory/Login/Login" protection="All" timeout="15" />
</authentication>
...
1
vote
2answers
574 views
How can I maintain .aspxauth session cookie between website and virtual app?
We have our production website in .net and a third party web app that runs as a virtual application from the website. I have been tasked with maintaining the session time out between the website and ...
2
votes
1answer
561 views
Forms Authentication not working for specific page
I cannot seem to isolate my forums to set different permissions for them than the rest of the site.
Here is the setup for my site.
<location path=".">
<system.web>
...
0
votes
0answers
220 views
Forms authentication for a subdomain, problems with path
I have a webpage on a subdomain that requires login. The problem is that i get an error trying to access it, the error is as follow:
Server Error in '/subdomains/filecenter' Application.
Access is ...
0
votes
1answer
881 views
Web.config Forms Auth > protect root but allow access to subdirectory
Here's my problem...
I have a website running in II7 integrated pipeline mode and I want to enable forms auth on the entire website apart from the '/secure/' directory which contains the login form.
...
2
votes
0answers
198 views
Web Forms Authentication from code-behind
Within my application a privileged user can add/delete/update user roles (while also assigning them to specific users). The below excerpt shows a rule in my web.config file which allows the ...
0
votes
2answers
295 views
It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.
Hi
I added forms authentication tag in web.config, after that I got this error when I try to start my MVC application in local. Please any help, all other post are about deploying app and this error
...
1
vote
2answers
312 views
Does order of <location> in web.config matters?
I have set a FormAuthentication to my website.
I want to allow annonymous access to the Login page and its resources (js, css, images).
I have added to web.config. Does the order there matter?
...
0
votes
1answer
286 views
Prevent Anonymous Access to Folder and sub Folders
I'm using VS 2010 with .NET 4.0 and SQL 2008 Membership/Role providers. My goal is to only allow access to a folder named "members" (and it's subdirectories) for those users that have logged in and ...
0
votes
2answers
197 views
Strange Webconfig and Mysql Issue
I have two sections in my webconfig that I think are an issue. The first one I put an arrow pointing
to the line that the web configuration tool says it is having problems with. I think its strange ...
0
votes
2answers
402 views
MVC3 Login using web.config, Error “It is an error to use a section registered as allowDefinition='MachineToApplication' ”
I'm creating a very simplistic MVC3 website. I need to add no database authenication.
I'm using a standard MVC project with the scaffolded account controller.
In the web.config file I have
...
0
votes
2answers
833 views
Forms Authentication Not Working After Publish
I have been working on a website project which restricts access to a certain folder to annonymous users and allows access to the folder to those who are logged in.
This has been working perfectly on ...
0
votes
1answer
507 views
forms authentication/web.config fix needed
I created a webapp in 4.0 . It works /runs fine locally.
All pages should be available to all users without asking for any userId and Password.
So When I add alllow users = "*" Not working.
When I ...
2
votes
1answer
232 views
Microsoft Media Platform + Forms Authentification
Forms Authentication does not work. Auth cookies are not sent to server when SMF attempts to get access to *.ism/Manifest files on a server that requires specific user roles.
What i do:
1. Create new ...
4
votes
3answers
668 views
Programmatically check if page requires authentication based on web.config settings
I would like to know if there is a way to check if a page requies authentication based on the web.config settings. Basically if there is a node like this
<location path="account">
...
1
vote
2answers
152 views
web.config help - Forms authentication Issue
I developed an app in 4.0 (my 1st time) and I have only 2 pages in it. I deployed it and it is working fine.
I want the site to display all the pages with out asking for any userID and password at ...
1
vote
1answer
3k views
Unrecognized configuration section system.web/configuration
i'm getting this "Unrecognized configuration section system.web/configuration when i set my admin,staff and user authentication .please help me with this.by here i provide the web.config code
...
4
votes
2answers
875 views
How does location authorization work when a user has multiple roles?
My web.config has this authorization rule:
<location path="Views/Administrator">
<system.web>
<authorization>
<allow roles="roleA, roleB" />
...
5
votes
4answers
691 views
How can I add location elements programmatically to the web config?
I have an application which creates page routes from a database. My whole site is secured with forms authentication but I need to allow unauthenticated uses to access these routes. I don't want to ...
1
vote
1answer
469 views
Forms authentication not working as expected
I am trying to use Forms Authentication for the first time. This is what I have in my web.config:
<authentication mode="Forms">
<forms loginUrl="Login.aspx" name="Login" ...
2
votes
2answers
2k views
how to set web.config and use the ASP.NET ResetPassword() method
I'm using the asp.net forms authentication and i need to be able to reset the password for a user.
This is the code:
protected void resetPassword(string username)
{
MembershipUser user = ...
0
votes
1answer
423 views
Share forms authentication cookie between parent and child application IIS7 .Net 4.0
i have a parent app, .Net 4.0 on IIS7 and a child app .Net 4.0 as well.
I just moved this from IIS6 machine and now the location tags (inherihitInChildApplications="false") does not seem to work.
...
4
votes
1answer
1k views
what's differences between “forms timeout”, “membership userIsOnlineTimeWindow” and “sessionState timeout”
What is the difference between these lines of code:
<forms timeout="5" />
<membership userIsOnlineTimeWindow="5" />
<sessionState timeout="5" />
Thanks a lot.
1
vote
1answer
2k views
ASP.NET web.config authorization settings ignored
I was searching for some solution but can't find one. There is this and this ones but can't found and answer there. Im developing an asp.net application on ASP.NET development server. I have the ...
0
votes
2answers
1k views
CSS not loading for Forms Authentication
I have seen several of these topics on numerous sites and I am still having an issue. I have added this to the bottom of my web.config right before the </configuaration>
<location ...
2
votes
2answers
1k views
Roles authentication is not working in asp.net
I am using the code below to access a page base based upon user authentication
if (user.FirstOrDefault() == HashedPassword)
{
string roles = "Member";
// Create the authentication ticket
...
0
votes
1answer
338 views
Users in Web.Config
i have a web.config file that looks like this:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" strict="false" explicit="true" ...
1
vote
1answer
804 views
web.config forms authentication get all users
I have a very simple asp.net application which I'm using forms authentication and storing each user's name / password in the web.config:
<authentication mode="Forms">
<forms ...


