473,386 Members | 1,706 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

strange authentication problem...

hi there,

i've got a website i created, that i've put onto my test server on the web.

I have a login page, that when the user comes to it, it first pops up a
windows authentication dialog box, and i dont know why? i click cancel on it
and the page still works as normal.

How can i remove this, and why is it appearing?
i am also not using any .NET authentication methods or anything..

thanks,
Nov 18 '05 #1
4 1915
you can set authentication mode in Web.config file
<authentication mode="Forms">
<forms name="login" loginUrl="login.aspx" protection="All" />
</authentication>

"Paul M" <mi******@hotmail.com> дÈëÏûÏ¢
news:Ou**************@TK2MSFTNGP10.phx.gbl...
hi there,

i've got a website i created, that i've put onto my test server on the web.
I have a login page, that when the user comes to it, it first pops up a
windows authentication dialog box, and i dont know why? i click cancel on it and the page still works as normal.

How can i remove this, and why is it appearing?
i am also not using any .NET authentication methods or anything..

thanks,

Nov 18 '05 #2
thanks, but this isnt exactly what i am after..

What the problem is that i already have a login page which all works
fine...however i have 3 pages in my web app, that whenever i go to their
URL, they always popup the windows authentication window, when it shouldnt
appear..i have no authentication code for these pages, nor do i want any.

web.config is also set to <authentication mode="None" /> but still no luck.

Paull

"coollzh" <co*****@hotmail.com> wrote in message
news:uy**************@tk2msftngp13.phx.gbl...
you can set authentication mode in Web.config file
<authentication mode="Forms">
<forms name="login" loginUrl="login.aspx" protection="All" />
</authentication>

"Paul M" <mi******@hotmail.com> дÈëÏûÏ¢
news:Ou**************@TK2MSFTNGP10.phx.gbl...
hi there,

i've got a website i created, that i've put onto my test server on the web.

I have a login page, that when the user comes to it, it first pops up a
windows authentication dialog box, and i dont know why? i click cancel

on it
and the page still works as normal.

How can i remove this, and why is it appearing?
i am also not using any .NET authentication methods or anything..

thanks,


Nov 18 '05 #3
thanks, but this isnt exactly what i am after..

What the problem is that i already have a login page which all works
fine...however i have 3 pages in my web app, that whenever i go to their
URL, they always popup the windows authentication window, when it shouldnt
appear..i have no authentication code for these pages, nor do i want any.

web.config is also set to <authentication mode="None" /> but still no luck.

Paull

"coollzh" <co*****@hotmail.com> wrote in message
news:uy**************@tk2msftngp13.phx.gbl...
you can set authentication mode in Web.config file
<authentication mode="Forms">
<forms name="login" loginUrl="login.aspx" protection="All" />
</authentication>

"Paul M" <mi******@hotmail.com> дÈëÏûÏ¢
news:Ou**************@TK2MSFTNGP10.phx.gbl...
hi there,

i've got a website i created, that i've put onto my test server on the web.

I have a login page, that when the user comes to it, it first pops up a
windows authentication dialog box, and i dont know why? i click cancel

on it
and the page still works as normal.

How can i remove this, and why is it appearing?
i am also not using any .NET authentication methods or anything..

thanks,


Nov 18 '05 #4
it's really a trouble,i have no ideas about that.
if you have set authentication mode="None", it's will work
try again
<authentication mode="None">

<allow users="?"/>
</authentication>
"Paul M" <mi******@hotmail.com> дÈëÏûÏ¢ÐÂÎÅ
:uL*************@TK2MSFTNGP12.phx.gbl...
thanks, but this isnt exactly what i am after..

What the problem is that i already have a login page which all works
fine...however i have 3 pages in my web app, that whenever i go to their
URL, they always popup the windows authentication window, when it shouldnt
appear..i have no authentication code for these pages, nor do i want any.

web.config is also set to <authentication mode="None" /> but still no luck.
Paull

"coollzh" <co*****@hotmail.com> wrote in message
news:uy**************@tk2msftngp13.phx.gbl...
you can set authentication mode in Web.config file
<authentication mode="Forms">
<forms name="login" loginUrl="login.aspx" protection="All" /> <allow roles="Admins"/>
</authentication>

"Paul M" <mi******@hotmail.com> дÈëÏûÏ¢
news:Ou**************@TK2MSFTNGP10.phx.gbl...
hi there,

i've got a website i created, that i've put onto my test server on the

web.

I have a login page, that when the user comes to it, it first pops up a windows authentication dialog box, and i dont know why? i click cancel

on
it
and the page still works as normal.

How can i remove this, and why is it appearing?
i am also not using any .NET authentication methods or anything..

thanks,



Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Paul M | last post by:
hi there, i've got a website i created, that i've put onto my test server on the web. I have a login page, that when the user comes to it, it first pops up a windows authentication dialog box,...
2
by: Ryan Moore | last post by:
I have a ASP.NET app which uses forms authentication... This app is currently on 2 different machines, my local "development" machine, and a "testing server". This app works perfectly on the...
5
by: Archer | last post by:
I was making a role-based authentication but it does't login with correct password. the HttpContext.Current.User recieved in Global.asax is always null. Request.IsAuthenticated is always false....
3
by: na | last post by:
I am using form authentication and InProc cookieless session. The strange thing is that when an authenticated user try to navigate to any page that is in subfolder of the application root, the...
0
by: Shimon | last post by:
Hello, I have encountered strange problem regarding authentication and clustering. This is the scenario: We have an intranet web site with anonymous access, security using forms Auth and...
1
by: Torfi | last post by:
Hello all I've got a very weird situation I need help with. I'm building a solution where I have custom components in a web content management system using a web store library (API in DLLs). The...
3
by: KNC | last post by:
Hi all, I'm developing a website and deployed on webserver, it always display an authentication dialog that user must login with valid Windows user. Would anyone helps to instruct how to...
16
by: Victor | last post by:
I have a strange problem in my website. I configured my website to run under 2 worker processes. (web garden enabled). and I stored my user information in the current httpcontext(like...
1
Paxxer
by: Paxxer | last post by:
I use Forms authentication with a SQL Server database. The portion of the Web.config Looks like this . <authentication mode="Forms" > <forms timeout="43200" ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.