Tagged Questions
0
votes
0answers
7 views
Getting IIS Role from Encrypted Cookie
I am trying to get a login working correctly but have run into a little problem. I do not have access to the C# code only the web side of everything so I am not sure if what I need is even possible.
...
0
votes
1answer
83 views
loginUrl in web.config
I have Admin folder and User folder. and Login.aspx page inside user folder and Login.aspx page inside admin folder.
i have web.config in admin folder and user folder, please help me for loginUrl in ...
0
votes
1answer
57 views
IIS Authentication in web.config
In our project, a user can upload documents to a directory. The problem is that a user cannot access those files via the URL.
After playing around with permissions in IIS, I was able to download a ...
2
votes
1answer
78 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, ...
1
vote
1answer
36 views
User is not authenticated
I have 2 Silverlight applications at the same hosting like:
http://website.com/APP1
http://website.com/APP2
I can login to each of them. But after this when I try to open any TAB/MENU/POPUP ...
0
votes
0answers
46 views
How to make different Url use different Form Loginurl by modify web.config?
I have two type of Login Address which divide by version type. like
https://localhost/Forms/V1.0/Security/Login.svc/Login
or
https://localhost/Forms/V1.1/Security/Login.svc/Login
my web.config ...
0
votes
2answers
112 views
Where is Anonymous Authentication setting stored in IIS? No web.config created
I added an ASP.NET application under a virtual directory in Default Web Site. When I change the Authentication settings for a subfolder in the application (such as by disabling Anonymous ...
0
votes
1answer
59 views
web.config prevents file downloadable or viewable
I am very new to ASP.net.
I visited a website long time ago which I cannot remember the URL now. I wanted to open their CSS file to see the source, but once I clicked the error message says, "you ...
0
votes
0answers
46 views
Making three layers of authentication users asp.net
I'm making a website where you can be 3 different ype of users.
Anonymous - you can practical only look at the default.aspx and then you have to register
Standard User - You are able to visit all ...
1
vote
2answers
292 views
asp.net forms authentication deny any user from accessing new web forms
I'm having problem with an assignment on asp.net. I would like to ask, is there any way in which i can prevent any users (including authenticated users) from accessing newly created web forms unless I ...
0
votes
1answer
146 views
asp.net How To allow only one Domain user
I have looked for this issue on the internet and nothing specifies how to solve my problem.
It is a very small web application hosted on IIS7. In my web.config i have this code:
<system.web>
...
0
votes
0answers
55 views
Strange Forbidden Access error after publish
I get :
after I publish my website to the IIS server, straight after I press the login button with correct credentials. It works fine on my local machine and is supposed to transfer me to the ...
0
votes
1answer
257 views
Database access denied with Network Service/IIS [closed]
Here is my problem: I run a web site in IIS, with NetworkService identity. It has to access a protected MS SQL Server database. NetworkService has full right on the database( set by system admin ). I ...
0
votes
1answer
134 views
I can't use Roles without failing. “A network-related or instance-specific error occurred”
Hi I'm trying to use and understand Roles for the first time.
How can I resolve this? Do I need to add something to the WebConfig?
private static void CreateRoleIfNotExists(string role)
{
if ...
0
votes
0answers
41 views
Several authentication url's in one ASP.NET application
In ASP.NET MVC 4 application I need to have two different
<authentication mode="Forms">
<forms loginUrl="~/Authentication/Login" timeout="2880" />
</authentication>
sections in ...