473,386 Members | 1,741 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.

Hyperlinking and ASP.NEt Session

Hi,

I am trying to design a Home page for my applicatiion in which i want show
the links for for some itms...
I tried to put the following
<td>
<font face="Arial, Helvetica, sans-serif" color="#ffffff" size="2"> Contact
| My Profile | Logout /font>
</td>

Here i want to have link for the above options to respective pages, i tried
with anchor <A></A> with HREF attribute, but i don't want to see the
underline for the link., i am not sure of how to do that...would anyone help
me in this regard.

ASP.NET Session variables Questions?

1) How to discard session variables? Are all session variables cleared when
the code FormsAuthentication.SignOut() is executed for Forms authentication
web
applications (i am sessing this not happening, even after using
Session.Abandon(), Session.Clear())

2) Is session variables persistent across hyperliks (i think it is not,
since each hyperlink will assume diferent session)

3) How to check for user Session expiration to pop up a messgae saying
"Session Expired, goto Login page"

Thanks
Nedu

Nov 18 '05 #1
6 2539
See inline comments.
I am trying to design a Home page for my applicatiion in which i want show
the links for for some itms...
I tried to put the following
<td>
<font face="Arial, Helvetica, sans-serif" color="#ffffff" size="2"> Contact | My Profile | Logout /font>
</td>

Here i want to have link for the above options to respective pages, i tried with anchor <A></A> with HREF attribute, but i don't want to see the
underline for the link., i am not sure of how to do that...would anyone help me in this regard.
Use stylesheets for your links.

<style>
a.navlink
{
font-family: arial, helvetica, sans-serif;
font-size: 11px;
color: #ffffff;
text-decoration: none;
}
</style>

<a href="blah.aspx" class="navlink">Contact</a> ...etc

ASP.NET Session variables Questions?

1) How to discard session variables? Are all session variables cleared when the code FormsAuthentication.SignOut() is executed for Forms authentication web applications (i am sessing this not happening, even after using
Session.Abandon(), Session.Clear())
FormsAuthentication.SignOut() will clear the session variables set by the
ASP.NET authentication system. However, if you hit back on your browser,
the page will be pulled from your browser cache, and will display. Hitting
refresh on this page will cause it to re-request the page from the server,
at which point it will realise you are no longer logged in, and will
redirect to the login page, as defined in web.config.

2) Is session variables persistent across hyperliks (i think it is not,
since each hyperlink will assume diferent session)
Session variables are persistent across a users session, across hyperlinks
within the same domain and IIS application.

3) How to check for user Session expiration to pop up a messgae saying
"Session Expired, goto Login page"


You will need to do this using Javascript and timers. Create a timer on
each page load, in which you pass in the session timeout. When the timer
elapses, use the alert command to display a warning message.
Regards,

Mun

Nov 18 '05 #2
Thanks Mun.
I was trying to use Timer object for Session Timeout popup and redirect
already, but it was not not working...
would you give me exaple of how to code time controls to popup a message and
redirect to login page when the session times out..
(using Session.Timeout property to determine the session timout).

Thanks
Nedu

"Munsifali Rashid" <mun.news@#RemoveToReply#cordlessmouse.co.uk> wrote in
message news:eB**************@TK2MSFTNGP12.phx.gbl...
See inline comments.
I am trying to design a Home page for my applicatiion in which i want show the links for for some itms...
I tried to put the following
<td>
<font face="Arial, Helvetica, sans-serif" color="#ffffff" size="2"> Contact
| My Profile | Logout /font>
</td>

Here i want to have link for the above options to respective pages, i

tried
with anchor <A></A> with HREF attribute, but i don't want to see the
underline for the link., i am not sure of how to do that...would anyone

help
me in this regard.


Use stylesheets for your links.

<style>
a.navlink
{
font-family: arial, helvetica, sans-serif;
font-size: 11px;
color: #ffffff;
text-decoration: none;
}
</style>

<a href="blah.aspx" class="navlink">Contact</a> ...etc

ASP.NET Session variables Questions?

1) How to discard session variables? Are all session variables cleared

when
the code FormsAuthentication.SignOut() is executed for Forms

authentication
web applications (i am sessing this not happening, even after using
Session.Abandon(), Session.Clear())


FormsAuthentication.SignOut() will clear the session variables set by the
ASP.NET authentication system. However, if you hit back on your browser,
the page will be pulled from your browser cache, and will display.

Hitting refresh on this page will cause it to re-request the page from the server,
at which point it will realise you are no longer logged in, and will
redirect to the login page, as defined in web.config.

2) Is session variables persistent across hyperliks (i think it is not,
since each hyperlink will assume diferent session)


Session variables are persistent across a users session, across hyperlinks
within the same domain and IIS application.

3) How to check for user Session expiration to pop up a messgae saying
"Session Expired, goto Login page"


You will need to do this using Javascript and timers. Create a timer on
each page load, in which you pass in the session timeout. When the timer
elapses, use the alert command to display a warning message.
Regards,

Mun

Nov 18 '05 #3
Hi Nedu,

Instead of a timer object, you may use the setTimeout method, for example:

window.setTimeout(window.alert(""Session Expired, goto Login page!",100000)

For more information on this method, you can refer to:

http://msdn.microsoft.com/library/de...thor/dhtml/ref
erence/methods/setTimeout.asp

Luke
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #4
What you need to do, is start a javascript timer on each page load, and then
update the timer every second until the session expires. If the user
navigates to a different page, the clock will reset as they are actively
using the session.

Create a timers javascript file and put the following two functions in it.
This script must be referenced in every page on which you want to show the
popup. I.e. save it as "includes/timers.js" and then each page must
reference it using <script language="JavaScript"
src="includes/timers.js"></script>.
function startClock()
{
dWatch = 0;
dStarted = new Date();
}
function updateClock(iTimeOutAlert)
{
setTimeout("updateClock('" + iTimeOutAlert + "');", 100);
dNow = new Date();
dWatch = dNow.getTime() - dStarted.getTime();
dClock = Math.round(dWatch/1000);
if (dClock == iTimeOutAlert)
{
alert("Warning!\n\nYour session has expired.\nRedirecting to login
page...");
window.location.href = "loginpage.aspx";
}
}
Once this is done, you need to modify pages using the alert to call
startClock() and updateClock(). You can do this using the following (in the
Page_Load function):
[C#]
int intTimeOut = Session.Timeout*100;
string strTimerScript = "startClock();updateClock(" + intTimeOut.ToString()
+ ");"
Page.RegisterStartupScript("timerScript", strTimerScript);
[VB.NET]
Dim intTimeOut as Integer = Session.Timeout*100
Dim strTimerScript As String = "startClock();updateClock(" &
intTimeOut.ToString() & ");"
Page.RegisterStartupScript("timerScript", strTimerScript)
This code sample is constructed partly from memory, and partly from some
code snippets I had floating around. Haven't used it for a coupla years
now, though it worked perfectly back then, but it was being used on a
classic ASP website, not .NET. That shouldn't be an issue though, as it's
all client-side code. If there's any problems, let me know, and I'll try
and help :-)

Regards,

Mun

"Nedu N" <ne****@hotmail.com> wrote in message
news:un**************@TK2MSFTNGP11.phx.gbl...
Thanks Mun.
I was trying to use Timer object for Session Timeout popup and redirect
already, but it was not not working...
would you give me exaple of how to code time controls to popup a message and redirect to login page when the session times out..
(using Session.Timeout property to determine the session timout).

Thanks
Nedu

Nov 18 '05 #5
Thanks Mun...
I tried but i am make it working...i just tried with the script that you
gave me..

I created a js file in my project itself - TimeoutTimer.js
and i referenced this on one of my page's HTML as reference it using <script
language="JavaScript"
src="TimeoutTimer.js"></script>.

and i had following code in my page load
Session.Timeout = 10; //i am ust overriding this...

int intTimeOut = Session.Timeout * 100;

Global.strScript = "startClock();updateClock(" + intTimeOut.ToString() + ");

Page.RegisterStartupScript("timerScript", Global.strScript);

But the output that i am getting is the following displayed on my page as a
string...i think the the javascript was not executed...woudl u please tell
me what is the problem since i am new to scripts..

startClock();updateClock(1000)

"Munsifali Rashid" <mun@**RemoveToReply**vefuk.com> wrote in message
news:OC**************@tk2msftngp13.phx.gbl...
What you need to do, is start a javascript timer on each page load, and then update the timer every second until the session expires. If the user
navigates to a different page, the clock will reset as they are actively
using the session.

Create a timers javascript file and put the following two functions in it.
This script must be referenced in every page on which you want to show the
popup. I.e. save it as "includes/timers.js" and then each page must
reference it using <script language="JavaScript"
src="includes/timers.js"></script>.
function startClock()
{
dWatch = 0;
dStarted = new Date();
}
function updateClock(iTimeOutAlert)
{
setTimeout("updateClock('" + iTimeOutAlert + "');", 100);
dNow = new Date();
dWatch = dNow.getTime() - dStarted.getTime();
dClock = Math.round(dWatch/1000);
if (dClock == iTimeOutAlert)
{
alert("Warning!\n\nYour session has expired.\nRedirecting to login
page...");
window.location.href = "loginpage.aspx";
}
}
Once this is done, you need to modify pages using the alert to call
startClock() and updateClock(). You can do this using the following (in the Page_Load function):
[C#]
int intTimeOut = Session.Timeout*100;
string strTimerScript = "startClock();updateClock(" + intTimeOut.ToString() + ");"
Page.RegisterStartupScript("timerScript", strTimerScript);
[VB.NET]
Dim intTimeOut as Integer = Session.Timeout*100
Dim strTimerScript As String = "startClock();updateClock(" &
intTimeOut.ToString() & ");"
Page.RegisterStartupScript("timerScript", strTimerScript)
This code sample is constructed partly from memory, and partly from some
code snippets I had floating around. Haven't used it for a coupla years
now, though it worked perfectly back then, but it was being used on a
classic ASP website, not .NET. That shouldn't be an issue though, as it's
all client-side code. If there's any problems, let me know, and I'll try
and help :-)

Regards,

Mun

"Nedu N" <ne****@hotmail.com> wrote in message
news:un**************@TK2MSFTNGP11.phx.gbl...
Thanks Mun.
I was trying to use Timer object for Session Timeout popup and redirect
already, but it was not not working...
would you give me exaple of how to code time controls to popup a message

and
redirect to login page when the session times out..
(using Session.Timeout property to determine the session timout).

Thanks
Nedu


Nov 18 '05 #6
There's an error in the code - I forgot to wrap the javascript in <script>
tags.

Global.strScript = "startClock();updateClock(" + intTimeOut.ToString() + ");

Should be:

Global.strScript = "<script language='JavaScript'>startClock();updateClock("
+ intTimeOut.ToString() + ");</script>";

Also, the number passed in should be the Session.Timeout in seconds, so
intTimeOut should be:

int intTimeOut = Session.Timeout * 60;

I've just tested this code, and it seems to be working.

Hope this helps,

Mun

"Nedu N" <ne****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Thanks Mun...
I tried but i am make it working...i just tried with the script that you
gave me..

I created a js file in my project itself - TimeoutTimer.js
and i referenced this on one of my page's HTML as reference it using <script language="JavaScript"
src="TimeoutTimer.js"></script>.

and i had following code in my page load
Session.Timeout = 10; //i am ust overriding this...

int intTimeOut = Session.Timeout * 100;

Global.strScript = "startClock();updateClock(" + intTimeOut.ToString() + ");
Page.RegisterStartupScript("timerScript", Global.strScript);

But the output that i am getting is the following displayed on my page as a string...i think the the javascript was not executed...woudl u please tell
me what is the problem since i am new to scripts..

startClock();updateClock(1000)


Nov 18 '05 #7

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

Similar topics

1
by: Paul | last post by:
Hmmm, didn't seem to work. I have set session.use_cookies = 1 and session.use_trans_sid = 1 in my php.ini file. Index.php contains:...
27
by: mrbog | last post by:
Tell me if my assertion is wrong here: The only way to prevent session hijacking is to NEVER store authentication information (such as name/password) in the session. Well, to never authenticate...
2
by: Damien | last post by:
Hi to all, I'm currently re-designing our intranet : nice and lean CSS2, cleaned-up PHP 4.3.7, better-normalized MySQL ;o). So I've started using the $_SESSION variable instead of register_globals...
13
by: Mimi | last post by:
Hello, I am having trouble using the session vars in PHP 4.3.9 OS: Win XP Prof Web Server IIS (is local and there are no links to other servers from the web pages I work on) Browser: IE 6.0 ...
0
by: joseph conrad | last post by:
Hi, I tried to implement my own session handler in order to keep control on the process the drawback I foun it is not creating and storing in my cookie the PHPSESSID variable anymore. reading te...
14
by: aroraamit81 | last post by:
Hi, I am facing a trouble. I have some Session variables in my code and somehow my session variables are getting mixed up with other users. For example User A has access to 10 companies and...
7
by: aroraamit81 | last post by:
Well Guys, Here is a very strange trouble. When more than one users request tto same page at the same time then our session gets conflicted. Moreover I printed my SessionID, strangely but true I...
1
by: Santosh | last post by:
Dear All i am writting a code sending mail with attachement. i am writting code for sending mail in one page and code for attaching a file in the next page. aftet attaching a file i am taking...
5
by: lyealain | last post by:
<% If Session("username") = "" Then Response.Redirect("/CLS/Login.asp") End If Dim conn Dim connectstr Dim db_name, db_username, db_userpassword Dim db_server Dim res
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
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
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.