472,779 Members | 1,910 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Authentication login screen appears on both frames of the framset

Hello,

I am developing a C# asp.net application.
I am using the authentication and authorization mechanism, which its timeout
is set to 60 minutes.

My application consists of 2 frames - a header frame and a main frame.
When i enter the application, i see the login screen on the whole screen,
but when the authentication expires, the login screen appears on both
frames.

How can i make it appear on 1 central screen?
Thank you
Dana
Dec 12 '05 #1
9 2500
Dana,

If you're using forms authentication when a user is not authorized to see a
page they are automatically redirected to the login page.

Since both of your frames are checking if the user is authorized they each
get redirected.

To fix this in the code for the page that you don't want redirected to the
login page you should remove it from the forms authentication process and
then check if the user is logged in "manually" in the code-behind. If they
are logged in display the data. If the are not then display an appropriate
message or nothng at all...

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
Hello,

I am developing a C# asp.net application.
I am using the authentication and authorization mechanism, which its
timeout
is set to 60 minutes.

My application consists of 2 frames - a header frame and a main frame.
When i enter the application, i see the login screen on the whole screen,
but when the authentication expires, the login screen appears on both
frames.

How can i make it appear on 1 central screen?
Thank you
Dana

Dec 12 '05 #2
when one frame detects a login required, it needs to redirect to a login
page, the login page should run client code that detects its in a frame, and
redirect to target "_top", or refresh its parent frame (the frameset)

-- bruce (sqlwork.com)
"dana lees" <da***@idc.ac.il> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
Hello,

I am developing a C# asp.net application.
I am using the authentication and authorization mechanism, which its
timeout
is set to 60 minutes.

My application consists of 2 frames - a header frame and a main frame.
When i enter the application, i see the login screen on the whole screen,
but when the authentication expires, the login screen appears on both
frames.

How can i make it appear on 1 central screen?
Thank you
Dana

Dec 12 '05 #3
Thank you very much.
Just a little question - How do i remove a certain page from the forms
authentication process?
Thanks,
Dana

"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:eB**************@TK2MSFTNGP12.phx.gbl...
Dana,

If you're using forms authentication when a user is not authorized to see a page they are automatically redirected to the login page.

Since both of your frames are checking if the user is authorized they each
get redirected.

To fix this in the code for the page that you don't want redirected to the
login page you should remove it from the forms authentication process and
then check if the user is logged in "manually" in the code-behind. If they
are logged in display the data. If the are not then display an appropriate
message or nothng at all...

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
Hello,

I am developing a C# asp.net application.
I am using the authentication and authorization mechanism, which its
timeout
is set to 60 minutes.

My application consists of 2 frames - a header frame and a main frame.
When i enter the application, i see the login screen on the whole screen, but when the authentication expires, the login screen appears on both
frames.

How can i make it appear on 1 central screen?
Thank you
Dana


Dec 13 '05 #4
Do you have an example of such code maybe?

Thanks,
Dana

"Bruce Barker" <br******************@safeco.com> wrote in message
news:uA**************@TK2MSFTNGP11.phx.gbl...
when one frame detects a login required, it needs to redirect to a login
page, the login page should run client code that detects its in a frame, and redirect to target "_top", or refresh its parent frame (the frameset)

-- bruce (sqlwork.com)
"dana lees" <da***@idc.ac.il> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
Hello,

I am developing a C# asp.net application.
I am using the authentication and authorization mechanism, which its
timeout
is set to 60 minutes.

My application consists of 2 frames - a header frame and a main frame.
When i enter the application, i see the login screen on the whole screen, but when the authentication expires, the login screen appears on both
frames.

How can i make it appear on 1 central screen?
Thank you
Dana


Dec 13 '05 #5
Dana,

I'm not certain where you set that permission you have to have done that
yourself to be locking the user out of that file. Otherwise the the page
wouldn't be redirecting to the login. There are a number of places you could
have done so, but you've probably done that in your web.config file. Just
give all users permission to the page that shouldn't redirect, but then do
the check in the page's code.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:ue**************@TK2MSFTNGP14.phx.gbl...
Thank you very much.
Just a little question - How do i remove a certain page from the forms
authentication process?
Thanks,
Dana

"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:eB**************@TK2MSFTNGP12.phx.gbl...
Dana,

If you're using forms authentication when a user is not authorized to see

a
page they are automatically redirected to the login page.

Since both of your frames are checking if the user is authorized they
each
get redirected.

To fix this in the code for the page that you don't want redirected to
the
login page you should remove it from the forms authentication process and
then check if the user is logged in "manually" in the code-behind. If
they
are logged in display the data. If the are not then display an
appropriate
message or nothng at all...

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
> Hello,
>
> I am developing a C# asp.net application.
> I am using the authentication and authorization mechanism, which its
> timeout
> is set to 60 minutes.
>
> My application consists of 2 frames - a header frame and a main frame.
> When i enter the application, i see the login screen on the whole screen, > but when the authentication expires, the login screen appears on both
> frames.
>
> How can i make it appear on 1 central screen?
>
>
> Thank you
> Dana
>
>



Dec 13 '05 #6
I have used the we.config file in the following way:

<authentication mode="Forms">

<forms name="DJTCCookie" path="/" loginUrl="login.aspx" protection="All"
timeout="60">

</forms>

</authentication>


"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:ul**************@TK2MSFTNGP12.phx.gbl...
Dana,

I'm not certain where you set that permission you have to have done that
yourself to be locking the user out of that file. Otherwise the the page
wouldn't be redirecting to the login. There are a number of places you could have done so, but you've probably done that in your web.config file. Just
give all users permission to the page that shouldn't redirect, but then do
the check in the page's code.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:ue**************@TK2MSFTNGP14.phx.gbl...
Thank you very much.
Just a little question - How do i remove a certain page from the forms
authentication process?
Thanks,
Dana

"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:eB**************@TK2MSFTNGP12.phx.gbl...
Dana,

If you're using forms authentication when a user is not authorized to see
a
page they are automatically redirected to the login page.

Since both of your frames are checking if the user is authorized they
each
get redirected.

To fix this in the code for the page that you don't want redirected to
the
login page you should remove it from the forms authentication process

and then check if the user is logged in "manually" in the code-behind. If
they
are logged in display the data. If the are not then display an
appropriate
message or nothng at all...

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
> Hello,
>
> I am developing a C# asp.net application.
> I am using the authentication and authorization mechanism, which its
> timeout
> is set to 60 minutes.
>
> My application consists of 2 frames - a header frame and a main frame. > When i enter the application, i see the login screen on the whole

screen,
> but when the authentication expires, the login screen appears on both
> frames.
>
> How can i make it appear on 1 central screen?
>
>
> Thank you
> Dana
>
>



Dec 13 '05 #7
How can i give the users permission to "header.aspx", which is the page they
are always allowed to open?

Thanks,
Dana
"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:ul**************@TK2MSFTNGP12.phx.gbl...
Dana,

I'm not certain where you set that permission you have to have done that
yourself to be locking the user out of that file. Otherwise the the page
wouldn't be redirecting to the login. There are a number of places you could have done so, but you've probably done that in your web.config file. Just
give all users permission to the page that shouldn't redirect, but then do
the check in the page's code.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:ue**************@TK2MSFTNGP14.phx.gbl...
Thank you very much.
Just a little question - How do i remove a certain page from the forms
authentication process?
Thanks,
Dana

"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:eB**************@TK2MSFTNGP12.phx.gbl...
Dana,

If you're using forms authentication when a user is not authorized to see
a
page they are automatically redirected to the login page.

Since both of your frames are checking if the user is authorized they
each
get redirected.

To fix this in the code for the page that you don't want redirected to
the
login page you should remove it from the forms authentication process

and then check if the user is logged in "manually" in the code-behind. If
they
are logged in display the data. If the are not then display an
appropriate
message or nothng at all...

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
> Hello,
>
> I am developing a C# asp.net application.
> I am using the authentication and authorization mechanism, which its
> timeout
> is set to 60 minutes.
>
> My application consists of 2 frames - a header frame and a main frame. > When i enter the application, i see the login screen on the whole

screen,
> but when the authentication expires, the login screen appears on both
> frames.
>
> How can i make it appear on 1 central screen?
>
>
> Thank you
> Dana
>
>



Dec 13 '05 #8
Dana,

You've locked down the entire application. You'll want to specify only
certain pages to protect. Here is a sample web.config file that allows
access to an entire application but locks down a single directory:

***Note the <location> section at the bottom which contains a second
<system.web> section.

1.. <?xml version="1.0" encoding="utf-8" ?>
2.. <configuration>
3..
4.. <system.web>
5..
6.. <!-- AUTHENTICATION
7.. This section sets the authentication policies of the application.
Possible modes are "Windows",
8.. "Forms", "Passport" and "None"
9.. -->
10.. <authentication mode="Forms">
11.. <!-- The name attribute below specifies the name of the browser
cookie that contains the authentication ticket. By default the cookie is
named .ASPXAUTH. If you are configuring multiple apps on the same server,
you should give a uniques cookie name for each app. loginUrl is the page to
which users are auto-redirected to when authentication is required. timeout
is the amnt. of time in minutes before a cookie expires. The default is 30
min. -->
12.. <forms name="LoginCookieName" loginUrl="admin/login.aspx"
timeout="20">
13.. <credentials passwordFormat="SHA1">
14.. <user name="UserName"
password="C8FEBA6A531A71A9AC1BA0D982163C9AADA69820 "/>
15.. </credentials>
16.. </forms>
17.. </authentication>
18..
19.. <!-- AUTHORIZATION
20.. This section sets the authorization policies of the application. You
can allow or deny access
21.. to application resources by user or role. Wildcards: "*" mean
everyone, "?" means anonymous
22.. (unauthenticated) users.
23.. -->
24.. <authorization>
25.. <!-- allowing anonymous users access to the entire app -->
26.. <allow users="?" />
27.. </authorization>
28..
29.. <!-- APPLICATION-LEVEL TRACE LOGGING
30.. Application-level tracing enables trace log output for every page
within an application.
31.. Set trace enabled="true" to enable application trace logging. If
pageOutput="true", the
32.. trace information will be displayed at the bottom of each page.
Otherwise, you can view the
33.. application trace log by browsing the "trace.axd" page from your web
application
34.. root.
35.. -->
36.. <trace enabled="false" requestLimit="10" pageOutput="false"
traceMode="SortByTime" localOnly="false" />
37..
38..
39.. <!-- GLOBALIZATION
40.. This section sets the globalization settings of the application.
41.. -->
42.. <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
43.. </system.web>
44..
45.. <!-- LOCATION
46.. The "<location>" tag allows a developer to specify a particular
folder / file to set
47.. properties for.
48.. -->
49.. <location path="admin">
50.. <system.web>
51..
52.. <!-- AUTHORIZATION
53.. This section sets the authorization policies of the application. You
can allow or deny access
54.. to application resources by user or role. Wildcards: "*" mean
everyone, "?" means anonymous
55.. (unauthenticated) users.
56.. -->
57.. <authorization>
58.. <!-- I use the code below to allow one and only one user to access
the ADMIN folder
59.. (directory). My login script returns a username and not an id value.
If it returned an id
60.. value then the id value would be used instead. I then deny all users
and anonymous users.
61.. Thus only one user, the site admin, can access the folder "Admin" and
any pages in that
62.. folder. -->
63.. <allow users="UserName"></allow>
64.. <deny users="*"></deny>
65.. <deny users="?"></deny>
66.. </authorization>
67.. </system.web>
68.. </location>
69.. </configuration>
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:O6*************@TK2MSFTNGP10.phx.gbl...
How can i give the users permission to "header.aspx", which is the page
they
are always allowed to open?

Thanks,
Dana
"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:ul**************@TK2MSFTNGP12.phx.gbl...
Dana,

I'm not certain where you set that permission you have to have done that
yourself to be locking the user out of that file. Otherwise the the page
wouldn't be redirecting to the login. There are a number of places you

could
have done so, but you've probably done that in your web.config file. Just
give all users permission to the page that shouldn't redirect, but then
do
the check in the page's code.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:ue**************@TK2MSFTNGP14.phx.gbl...
> Thank you very much.
> Just a little question - How do i remove a certain page from the forms
> authentication process?
> Thanks,
> Dana
>
> "S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
> message news:eB**************@TK2MSFTNGP12.phx.gbl...
>> Dana,
>>
>> If you're using forms authentication when a user is not authorized to see > a
>> page they are automatically redirected to the login page.
>>
>> Since both of your frames are checking if the user is authorized they
>> each
>> get redirected.
>>
>> To fix this in the code for the page that you don't want redirected to
>> the
>> login page you should remove it from the forms authentication process and >> then check if the user is logged in "manually" in the code-behind. If
>> they
>> are logged in display the data. If the are not then display an
>> appropriate
>> message or nothng at all...
>>
>> --
>> Sincerely,
>>
>> S. Justin Gengo, MCP
>> Web Developer / Programmer
>>
>> www.aboutfortunate.com
>>
>> "Out of chaos comes order."
>> Nietzsche
>> "dana lees" <da***@idc.ac.il> wrote in message
>> news:%2***************@TK2MSFTNGP12.phx.gbl...
>> > Hello,
>> >
>> > I am developing a C# asp.net application.
>> > I am using the authentication and authorization mechanism, which its
>> > timeout
>> > is set to 60 minutes.
>> >
>> > My application consists of 2 frames - a header frame and a main frame. >> > When i enter the application, i see the login screen on the whole
> screen,
>> > but when the authentication expires, the login screen appears on
>> > both
>> > frames.
>> >
>> > How can i make it appear on 1 central screen?
>> >
>> >
>> > Thank you
>> > Dana
>> >
>> >
>>
>>
>
>



Dec 13 '05 #9
Thank you very much!

"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:eR**************@TK2MSFTNGP12.phx.gbl...
Dana,

You've locked down the entire application. You'll want to specify only
certain pages to protect. Here is a sample web.config file that allows
access to an entire application but locks down a single directory:

***Note the <location> section at the bottom which contains a second
<system.web> section.

1.. <?xml version="1.0" encoding="utf-8" ?>
2.. <configuration>
3..
4.. <system.web>
5..
6.. <!-- AUTHENTICATION
7.. This section sets the authentication policies of the application.
Possible modes are "Windows",
8.. "Forms", "Passport" and "None"
9.. -->
10.. <authentication mode="Forms">
11.. <!-- The name attribute below specifies the name of the browser
cookie that contains the authentication ticket. By default the cookie is
named .ASPXAUTH. If you are configuring multiple apps on the same server,
you should give a uniques cookie name for each app. loginUrl is the page to which users are auto-redirected to when authentication is required. timeout is the amnt. of time in minutes before a cookie expires. The default is 30
min. -->
12.. <forms name="LoginCookieName" loginUrl="admin/login.aspx"
timeout="20">
13.. <credentials passwordFormat="SHA1">
14.. <user name="UserName"
password="C8FEBA6A531A71A9AC1BA0D982163C9AADA69820 "/>
15.. </credentials>
16.. </forms>
17.. </authentication>
18..
19.. <!-- AUTHORIZATION
20.. This section sets the authorization policies of the application. You can allow or deny access
21.. to application resources by user or role. Wildcards: "*" mean
everyone, "?" means anonymous
22.. (unauthenticated) users.
23.. -->
24.. <authorization>
25.. <!-- allowing anonymous users access to the entire app -->
26.. <allow users="?" />
27.. </authorization>
28..
29.. <!-- APPLICATION-LEVEL TRACE LOGGING
30.. Application-level tracing enables trace log output for every page
within an application.
31.. Set trace enabled="true" to enable application trace logging. If
pageOutput="true", the
32.. trace information will be displayed at the bottom of each page.
Otherwise, you can view the
33.. application trace log by browsing the "trace.axd" page from your web application
34.. root.
35.. -->
36.. <trace enabled="false" requestLimit="10" pageOutput="false"
traceMode="SortByTime" localOnly="false" />
37..
38..
39.. <!-- GLOBALIZATION
40.. This section sets the globalization settings of the application.
41.. -->
42.. <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
43.. </system.web>
44..
45.. <!-- LOCATION
46.. The "<location>" tag allows a developer to specify a particular
folder / file to set
47.. properties for.
48.. -->
49.. <location path="admin">
50.. <system.web>
51..
52.. <!-- AUTHORIZATION
53.. This section sets the authorization policies of the application. You can allow or deny access
54.. to application resources by user or role. Wildcards: "*" mean
everyone, "?" means anonymous
55.. (unauthenticated) users.
56.. -->
57.. <authorization>
58.. <!-- I use the code below to allow one and only one user to access
the ADMIN folder
59.. (directory). My login script returns a username and not an id value. If it returned an id
60.. value then the id value would be used instead. I then deny all users and anonymous users.
61.. Thus only one user, the site admin, can access the folder "Admin" and any pages in that
62.. folder. -->
63.. <allow users="UserName"></allow>
64.. <deny users="*"></deny>
65.. <deny users="?"></deny>
66.. </authorization>
67.. </system.web>
68.. </location>
69.. </configuration>
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:O6*************@TK2MSFTNGP10.phx.gbl...
How can i give the users permission to "header.aspx", which is the page
they
are always allowed to open?

Thanks,
Dana
"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in
message news:ul**************@TK2MSFTNGP12.phx.gbl...
Dana,

I'm not certain where you set that permission you have to have done that yourself to be locking the user out of that file. Otherwise the the page wouldn't be redirecting to the login. There are a number of places you

could
have done so, but you've probably done that in your web.config file. Just give all users permission to the page that shouldn't redirect, but then
do
the check in the page's code.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"dana lees" <da***@idc.ac.il> wrote in message
news:ue**************@TK2MSFTNGP14.phx.gbl...
> Thank you very much.
> Just a little question - How do i remove a certain page from the forms > authentication process?
> Thanks,
> Dana
>
> "S. Justin Gengo" <justin@[no_spam_please]aboutfortunate.com> wrote in > message news:eB**************@TK2MSFTNGP12.phx.gbl...
>> Dana,
>>
>> If you're using forms authentication when a user is not authorized to
see
> a
>> page they are automatically redirected to the login page.
>>
>> Since both of your frames are checking if the user is authorized
they >> each
>> get redirected.
>>
>> To fix this in the code for the page that you don't want redirected to >> the
>> login page you should remove it from the forms authentication process and
>> then check if the user is logged in "manually" in the code-behind.

If >> they
>> are logged in display the data. If the are not then display an
>> appropriate
>> message or nothng at all...
>>
>> --
>> Sincerely,
>>
>> S. Justin Gengo, MCP
>> Web Developer / Programmer
>>
>> www.aboutfortunate.com
>>
>> "Out of chaos comes order."
>> Nietzsche
>> "dana lees" <da***@idc.ac.il> wrote in message
>> news:%2***************@TK2MSFTNGP12.phx.gbl...
>> > Hello,
>> >
>> > I am developing a C# asp.net application.
>> > I am using the authentication and authorization mechanism, which its >> > timeout
>> > is set to 60 minutes.
>> >
>> > My application consists of 2 frames - a header frame and a main

frame.
>> > When i enter the application, i see the login screen on the whole
> screen,
>> > but when the authentication expires, the login screen appears on
>> > both
>> > frames.
>> >
>> > How can i make it appear on 1 central screen?
>> >
>> >
>> > Thank you
>> > Dana
>> >
>> >
>>
>>
>
>



Dec 14 '05 #10

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

Similar topics

2
by: sushi | last post by:
Hello, I have an web site which uses forms authentication. The application uses frames. When the authentication time out occurs and if we click on any one of the frames, each individual pages...
0
by: J. Babe | last post by:
In an ASP.NET application: -I am using forms authentication -I have a frames HTML page that: has a banner image at the top(HTML page containg a .jpg), and my .aspx pages in the bottom. ...
1
by: Martin | last post by:
Hi, After I gave up on tracking user sessions through the session object (Session_OnEnd is still not triggered by Abandon() even with mode=InProc and me manipulating session variables; in a new...
0
by: Anonieko Ramos | last post by:
ASP.NET Forms Authentication Best Practices Dr. Dobb's Journal February 2004 Protecting user information is critical By Douglas Reilly Douglas is the author of Designing Microsoft ASP.NET...
2
by: Andy Fish | last post by:
Hi, I have a problem using forms based authentication with a frameset. I made sure the containing frameset is an aspx so the first time the user tries to access the application he just gets...
4
by: Andrew | last post by:
Hey all, I would like to preface my question by stating I am still learning ASP.net and while I am confident in the basics and foundation, the more advanced stuff is still a challenge. Ok....
2
by: Agus Ayala | last post by:
Hi, all I have a page called "default.htm" which has 4 frames. When somebody wants to access this page, if the user didn't log on in the system then it must appears the "login.aspx" page. I'm...
5
by: Cesar | last post by:
Hello, I have an application that is using forms authentication and it seems to be working fine most of the time. Unfortunatelly, it sometimes just redirects me to the login screen. It seems that...
2
by: ABC | last post by:
I have a default page which has two frame pages. On the plan, I expected it will forward to login page which show on one frame page only if the users don't login. In fact, both two frame pages...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth

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.