473,387 Members | 1,520 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,387 software developers and data experts.

Web site login problems (IE6)

We have a web application that users can use by first authenticating
themselves via a secure connection (HTTPS/SSL).

If one goes directly to that secure page then one can log in successfully
using most browsers (tested with IE6, FireFox & Netscape). These are all
running on a machine running XP SP2.

A company using this web application displays the secure logon page
"embedded" within their corporate site (using Frames). This causes a
problem.... The logon procedure still works as expected using FireFox or
Netscape, but does not work using IE6. This has been tested on two
machines, one running XP sp1 and the other XP sp2.

The symptom is that after completing the form with the logon credentials,
the user clicks on the "logon" button and the page appears to refresh itself
with the form input boxes all blanked.

I suspect that this is a browser setting that is causing this behaviour, but
which one I don't know. Someone suggested that setting the security level
to LOW should fix this, but we of course can't go around suggesting that
users downgrade their security.

Does anyone know what the specific issue could be and what acceptable advice
I could pass on to the end user?

Many thanks in advance

Griff
Jul 22 '05 #1
5 2772
"Griff" <Ho*****@The.Moon> wrote in message
news:eq**************@tk2msftngp13.phx.gbl...
We have a web application that users can use by first authenticating
themselves via a secure connection (HTTPS/SSL).

If one goes directly to that secure page then one can log in successfully
using most browsers (tested with IE6, FireFox & Netscape). These are all
running on a machine running XP SP2.

A company using this web application displays the secure logon page
"embedded" within their corporate site (using Frames). This causes a
problem.... The logon procedure still works as expected using FireFox or
Netscape, but does not work using IE6. This has been tested on two
machines, one running XP sp1 and the other XP sp2.

The symptom is that after completing the form with the logon credentials,
the user clicks on the "logon" button and the page appears to refresh itself with the form input boxes all blanked.

I suspect that this is a browser setting that is causing this behaviour, but which one I don't know. Someone suggested that setting the security level
to LOW should fix this, but we of course can't go around suggesting that
users downgrade their security.

Does anyone know what the specific issue could be and what acceptable advice I could pass on to the end user?

Many thanks in advance

Griff


Could you try ensuring that your page doesn't run in a frame:

<script type="text/javascript">
if (self != top) top.location = "http://{domain}/{page}";
</script>

Of course, JavaScript has to be enabled.
Jul 22 '05 #2
> Could you try ensuring that your page doesn't run in a frame:

<script type="text/javascript">
if (self != top) top.location = "http://{domain}/{page}";
</script>

Of course, JavaScript has to be enabled.

Sorely tempted to [but that the howls of derision from those "requiring" to
embed it in a frame would be too much to bear].
Jul 22 '05 #3
"Griff" <Ho*****@The.Moon> wrote in message
news:OJ**************@TK2MSFTNGP15.phx.gbl...
Could you try ensuring that your page doesn't run in a frame:

<script type="text/javascript">
if (self != top) top.location = "http://{domain}/{page}";
</script>

Of course, JavaScript has to be enabled.

Sorely tempted to [but that the howls of derision from those "requiring"

to embed it in a frame would be too much to bear].

a) Try it; maybe they won't notice.

b) Perhaps they would reconsider their use of frames:

Why Frames Suck (Most of the Time)
http://www.useit.com/alertbox/9612.html

Web Commandments: Ten Deadly Sins and How to Overcome Them
http://www.smartisans.com/articles/w...mandments.aspx

c) Also, it's your site so they shouldn't make it look like it's part of
their's. It smacks of content grabbing, a practice that has been widely
admonished.

d) Of course, a "company using this web application" is a client which
likely overrides the above.
P.S. OEx is telling me that "microsoft.public.internetexplorer.security"
could not be resolved.
Jul 22 '05 #4
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:EL********************@comcast.com
P.S. OEx is telling me that
"microsoft.public.internetexplorer.security" could not be resolved.


It's a new group, added a couple weeks ago. Go to Tools | Newsgroups -
this would cause OE to sync the group list with the server. If you still
don't see the group, go to Tools | Newsgroups and click Reset List.

While you are at it, go to Tools | Options | General and consider
checking "Notify me if there are any new newsgroups" option.
--
With best wishes,
Igor Tandetnik

With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925
Jul 22 '05 #5
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:EL********************@comcast.com

P.S. OEx is telling me that
"microsoft.public.internetexplorer.security" could not be resolved.


In OE go to Tools | Accounts | Add (or New) | News.
Set up an account for this news server:

msnews.microsoft.com

The server is free and does not require you to logon. This news server
carries over 2200 newsgroups related to Microsoft products and keeps
messages at least 30 days.

To set up OE for news reading see
http://www.michaelstevenstech.com/ou...snewreader.htm

--
Frank Saunders, MS-MVP, IE/OE
Please respond in Newsgroup only. Do not send email
http://www.fjsmjs.com
Protect your PC
http://www.microsoft.com./athome/sec...t/default.aspx
http://defendingyourmachine.blogspot.com/
Jul 22 '05 #6

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

Similar topics

0
by: Mike | last post by:
I can not figure out what is going on here. I hope somebody can please help!!! I've got an intranet ASP3 application running on a Win2k server. This application requires a login, so the user...
2
by: Ron Howard | last post by:
I am trying to use the following in an ASP page to redirect a user to a non-anonymous FTP site: response.redirect("ftp://myusername:mypassword@ftp.mysite.com") but I keep getting a "permission...
0
by: Ken Wigle | last post by:
All, I am trying to add some .net applications I wrote to a virtual directory underneath the sharepoint services web site. I am having some problems and wondering if a) this is possible and/or...
0
by: Gareth | last post by:
Can somebody help me with the following problem I have? Configuration: 1 x Microsoft Windows Server 2003 Web Edition + IIS 6.0 + ASP.NET 1 x Microsoft Windows Server 2003 Standard Edition +...
4
by: Pawel Janik | last post by:
Hello! I was recently worked on building quite complicated web app. Everything was ok, it was quite good tested using most popular browsers (IE6.0, Firefox/Mozilla, Opera). I have problem with...
16
by: Ben Sehara | last post by:
Is there any way I can limit the access to my website? I have a site "A" and I want to allow access to it only from site "B" login user. If someone try to access site "A" directory, I want it...
2
by: =?Utf-8?B?SmF5IE1pbGxlcg==?= | last post by:
I'm having problems with the login control when I publish my site. Everything works fine when I run the application from Visual Studio and when I browse directly to the site where it is being...
6
by: =?Utf-8?B?S2VsbHk=?= | last post by:
We just switched our web application from .NET 1.1 to 2. Once client can't login out of several that have been successful. They enter a correct user name and password, click the login button and...
2
by: JRough | last post by:
I cannot log into our web site. I have a test web site and a real site. On Friday I could log in and today Monday I cannot log in. I have 2 databases In PHPMyAdmin, the real database and and a...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.