|
 |
asp_web_howto thread: How do I carry a session variable across multipe web pages
Message #1 by anhdo@a... on Tue, 22 Jan 2002 22:20:21
|
|
I am having problems carrying session variables across multiple web pages.
When a user has been authenticated on my web site, www.acce.org, I create
a session variable called session("member")="true"
If this variable is blank then the user cannot access members-only pages.
But when I try to carry the variable over to another page it comes up
empty. On the login page, where the session variable is created, it will
show as "true", but on other pages it comes up blank.
I put this code at the top of every member-only page:
<%@ LANGUAGE=VBSCRIPT%>
<%Response.Buffer=True%>
If Session("member")<>"true" then
'User is redirected to login page where session("member")="true" is created
End if
......
When I recall the variable session("member") nothing comes up and so the
user is always redirected to the login page even if they already
authenticated earlier. The session variable is not carrying over from the
login page. Is there something I am missing?
Thanks for any input.
Message #2 by Anupama Nallari <ANallari@p...> on Tue, 22 Jan 2002 16:21:03 -0600
|
|
This could be possible in two scenarios:
1. You are resetting the session variable in the current form. You have a
statement session("member")=''.
2. You are initialising the variable on each page:
oryou have a session("member")='' on other pages.
Search for this line in your code otherwise there is no reason as to why the
session variable is losing it's value.
anu
-----Original Message-----
From: anhdo@a... [mailto:anhdo@a...]
Sent: Tuesday, January 22, 2002 4:20 PM
To: ASP Web HowTo
Subject: [asp_web_howto] How do I carry a session variable across
multipe web pages
I am having problems carrying session variables across multiple web pages.
When a user has been authenticated on my web site, www.acce.org, I create
a session variable called session("member")="true"
If this variable is blank then the user cannot access members-only pages.
But when I try to carry the variable over to another page it comes up
empty. On the login page, where the session variable is created, it will
show as "true", but on other pages it comes up blank.
I put this code at the top of every member-only page:
<%@ LANGUAGE=VBSCRIPT%>
<%Response.Buffer=True%>
If Session("member")<>"true" then
'User is redirected to login page where session("member")="true" is created
End if
......
When I recall the variable session("member") nothing comes up and so the
user is always redirected to the login page even if they already
authenticated earlier. The session variable is not carrying over from the
login page. Is there something I am missing?
Thanks for any input.
$subst('Email.Unsub').
Message #3 by "Jenifer Mundstock" <jenifer@s...> on Tue, 22 Jan 2002 16:43:19 -0600
|
|
It could be a couple other things as well:
- Make sure you have cookies enabled on your browser. Sometimes I'll set
mine to not accept them for testing purposes and then I'll forget to set it
back.
- It's also possible that your hosting provider doesn't support sessions.
Really strange things occur when this is the case.
Jenifer
----- Original Message -----
From: <anhdo@a...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Tuesday, January 22, 2002 10:20 PM
Subject: [asp_web_howto] How do I carry a session variable across multipe
web pages
> I am having problems carrying session variables across multiple web pages.
> When a user has been authenticated on my web site, www.acce.org, I create
> a session variable called session("member")="true"
>
> If this variable is blank then the user cannot access members-only pages.
>
> But when I try to carry the variable over to another page it comes up
> empty. On the login page, where the session variable is created, it will
> show as "true", but on other pages it comes up blank.
>
> I put this code at the top of every member-only page:
>
> <%@ LANGUAGE=VBSCRIPT%>
> <%Response.Buffer=True%>
> If Session("member")<>"true" then
> 'User is redirected to login page where session("member")="true" is
created
> End if
>
> ......
>
> When I recall the variable session("member") nothing comes up and so the
> user is always redirected to the login page even if they already
> authenticated earlier. The session variable is not carrying over from the
> login page. Is there something I am missing?
>
> Thanks for any input.
$subst('Email.Unsub').
>
Message #4 by jstmehr4u3@a... on Tue, 22 Jan 2002 23:03:48 +0000
|
|
Can you please show your login code, especially where
you are setting session("member") = "TRUE", after the
validation.
TIA,
MIKE
> I am having problems carrying session variables across multiple web pages.
> When a user has been authenticated on my web site, www.acce.org, I create
> a session variable called session("member")="true"
>
> If this variable is blank then the user cannot access members-only pages.
>
> But when I try to carry the variable over to another page it comes up
> empty. On the login page, where the session variable is created, it will
> show as "true", but on other pages it comes up blank.
>
> I put this code at the top of every member-only page:
>
> <%@ LANGUAGE=VBSCRIPT%>
> <%Response.Buffer=True%>
> If Session("member")<>"true" then
> 'User is redirected to login page where session("member")="true" is created
> End if
>
> ......
>
> When I recall the variable session("member") nothing comes up and so the
> user is always redirected to the login page even if they already
> authenticated earlier. The session variable is not carrying over from the
> login page. Is there something I am missing?
>
> Thanks for any input.
Message #5 by Nick Charlesworth <nick@f...> on Wed, 23 Jan 2002 09:11:57 -0000
|
|
Is it that you have set the session variable to a boolean value of true and
are checking it in a string format rather than boolean format.
i.e.
If Session("user") = "true"
rather than
If Session("user") = true
-----Original Message-----
From: Jenifer Mundstock [mailto:jenifer@s...]
Sent: 22 January 2002 22:43
To: ASP Web HowTo
Subject: [asp_web_howto] Re: How do I carry a session variable across
multipe web pages
It could be a couple other things as well:
- Make sure you have cookies enabled on your browser. Sometimes I'll set
mine to not accept them for testing purposes and then I'll forget to set it
back.
- It's also possible that your hosting provider doesn't support sessions.
Really strange things occur when this is the case.
Jenifer
----- Original Message -----
From: <anhdo@a...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Tuesday, January 22, 2002 10:20 PM
Subject: [asp_web_howto] How do I carry a session variable across multipe
web pages
> I am having problems carrying session variables across multiple web pages.
> When a user has been authenticated on my web site, www.acce.org, I create
> a session variable called session("member")="true"
>
> If this variable is blank then the user cannot access members-only pages.
>
> But when I try to carry the variable over to another page it comes up
> empty. On the login page, where the session variable is created, it will
> show as "true", but on other pages it comes up blank.
>
> I put this code at the top of every member-only page:
>
> <%@ LANGUAGE=VBSCRIPT%>
> <%Response.Buffer=True%>
> If Session("member")<>"true" then
> 'User is redirected to login page where session("member")="true" is
created
> End if
>
> ......
>
> When I recall the variable session("member") nothing comes up and so the
> user is always redirected to the login page even if they already
> authenticated earlier. The session variable is not carrying over from the
> login page. Is there something I am missing?
>
> Thanks for any input.
$subst('Email.Unsub').
>
$subst('Email.Unsub').
Message #6 by <sathish297@y...> on Wed, 23 Jan 2002 10:26:43 +0530
|
|
Hi,
1) VBScript is case-sensitive.
2) Specify session.timeout=30 in all pages
With Regards,
R. Sathish Kumar
sathish297@y...
----- Original Message -----
From: <jstmehr4u3@a...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Wednesday, January 23, 2002 4:33 AM
Subject: [asp_web_howto] Re: How do I carry a session variable across
multipe web pages
> Can you please show your login code, especially where
> you are setting session("member") = "TRUE", after the
> validation.
>
> TIA,
> MIKE
> > I am having problems carrying session variables across multiple web
pages.
> > When a user has been authenticated on my web site, www.acce.org, I
create
> > a session variable called session("member")="true"
> >
> > If this variable is blank then the user cannot access members-only
pages.
> >
> > But when I try to carry the variable over to another page it comes up
> > empty. On the login page, where the session variable is created, it
will
> > show as "true", but on other pages it comes up blank.
> >
> > I put this code at the top of every member-only page:
> >
> > <%@ LANGUAGE=VBSCRIPT%>
> > <%Response.Buffer=True%>
> > If Session("member")<>"true" then
> > 'User is redirected to login page where session("member")="true" is
created
> > End if
> >
> > ......
> >
> > When I recall the variable session("member") nothing comes up and so the
> > user is always redirected to the login page even if they already
> > authenticated earlier. The session variable is not carrying over from
the
> > login page. Is there something I am missing?
> >
> > Thanks for any input.
$subst('Email.Unsub').
>
$subst('Email.Unsub').
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
Message #7 by "O'Hara, Elliott M" <EMOHARA@k...> on Wed, 23 Jan 2002 08:45:43 -0500
|
|
ummm...
VBScript isn't case sensitive...
-----Original Message-----
From: sathish297@y... [mailto:sathish297@y...]
Sent: Tuesday, January 22, 2002 11:57 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: How do I carry a session variable across
multipe web pages
Hi,
1) VBScript is case-sensitive.
2) Specify session.timeout=30 in all pages
With Regards,
R. Sathish Kumar
sathish297@y...
----- Original Message -----
From: <jstmehr4u3@a...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Wednesday, January 23, 2002 4:33 AM
Subject: [asp_web_howto] Re: How do I carry a session variable across
multipe web pages
> Can you please show your login code, especially where
> you are setting session("member") = "TRUE", after the
> validation.
>
> TIA,
> MIKE
> > I am having problems carrying session variables across multiple web
pages.
> > When a user has been authenticated on my web site, www.acce.org, I
create
> > a session variable called session("member")="true"
> >
> > If this variable is blank then the user cannot access members-only
pages.
> >
> > But when I try to carry the variable over to another page it comes up
> > empty. On the login page, where the session variable is created, it
will
> > show as "true", but on other pages it comes up blank.
> >
> > I put this code at the top of every member-only page:
> >
> > <%@ LANGUAGE=VBSCRIPT%>
> > <%Response.Buffer=True%>
> > If Session("member")<>"true" then
> > 'User is redirected to login page where session("member")="true" is
created
> > End if
> >
> > ......
> >
> > When I recall the variable session("member") nothing comes up and so the
> > user is always redirected to the login page even if they already
> > authenticated earlier. The session variable is not carrying over from
the
> > login page. Is there something I am missing?
> >
> > Thanks for any input.
$subst('Email.Unsub').
>
$subst('Email.Unsub').
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
$subst('Email.Unsub').
Message #8 by "Do, Anh" <Anhdo@a...> on Wed, 23 Jan 2002 10:29:20 -0500
|
|
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C1A422.BA1ADAD0
Content-Type: text/plain;
charset="iso-8859-1"
Here is the entire login code for the Security include that I put at the top of every page that is members-only on my web site....(
I know for a fact that the validation page is returning a value where session("member")="true" , where "true" is a string)
When I include this security include on top of pages where the coding is simple and there is no VB script the session variables
carry over but on more advanced pages, it doesn't seem to work.
I have include the coding for two pages which contain the security include. On the first page called: Member Serach, which includes
VB Script and database connectivity, the session variable "true" will not carry over. But on the second page called:Simple HTML ,
which is coded in simple html the session variable is understood to be "true".
******
PAGE 1: Member Search (session ("member") ="" on this page and does not carry over the value "true" even though it should)
<%@ Language=VBScript %>
<%Response.Buffer=True%>
<!--BEGIN SECURITY INCLUDE CODE---->
<%
If Session("member")<>"true" then
FName=Request.Cookies("UserInfo")("FirstName")
LName=Request.Cookies("UserInfo")("LastName")
UName=Request.Cookies("UserInfo")("UserName")
Pass=Request.Cookies("UserInfo")("Password")
ID=Request.Cookies("UserInfo")("NameID")
If Fname="" or UName="" or Pass="" or ID="" then
Response.Redirect "/login.asp?logcode=4&ReturnURL="&Request.ServerVariables("Script_Name")
Else
Dim connsec,rsValidate,querysec
set connsec=Server.CreateObject("ADODB.connection")
set rsValidate=Server.CreateObject("ADODB.recordset")
querysec="Select NameID,FirstName,LastName,Password from USERTABLE where Username='"&UName&"';"
connsec.Open "DSN=DataBase;uid=username;pwd=password"
rsValidate.Open querysec,connsec
if rsValidate.EOF then
rsValidate.Close
connsec.Close
Response.Redirect "/login.asp?logcode=2&ReturnURL="&Request.ServerVariables("Script_Name")
else
rsValidate.MoveFirst
If Pass<>rsValidate("Password")Then
rsValidate.Close
connsec.Close
Response.Redirect "/login.asp?logcode=2&ReturnURL="&Request.ServerVariables("Script_Name")
Else
Response.Cookies("UserInfo").Expires=date+90
Session("member")="true"
rsValidate.Close
connsec.Close
End If
End If
End If
End If
%>
<!--END SECURITY INCLUDE-->
<HTML>
<HEAD>
<LINK REL=STYLESHEET TYPE="text/css" HREF="style.css" TITLE="Style">
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<META Name= "description" Content="Member Search, Member Directory">
<title>Individual Member Search</title>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#FFFFFF">
<center><h1>Member Search</h1></center>
<center>
<%If Request.QueryString("value")=1 Then
Response.Write "<center><font face='Arial' size='+2' color='#000090'>You did not enter any search criteria. Please try
again.</font></center><br>"
End If
If Request.QueryString("value")=2 Then
Response.Write "<center><font face='Arial' size='+2' color='#000090'>Sorry, your search returned no results. Try using
broader criteria.</font></center><br>"
End If
%>
<b>Please fill out form below</b>
<Form Method="post" Action="Memberserarchresult.asp">
<table border=0 cellpadding=0 cellspacing=0>
<tr><td>Last Name</td><td> </td><td><INPUT type="text" name="lastname"
style="width:150px"></td></tr>
<tr><td>First Name</td><td> </td><td><INPUT type="text" name="firstname"
style="width:150px"></td></tr>
<tr><td>City</td><td> </td><td><INPUT type="text" name="city"
style="width:100px"></td></tr>
<tr><td>State</td><td> </td><td><INPUT type="text" name="state" style="width:45px"
maxlength=2></td></tr>
<tr><td>Zip Code</td><td> </td><td><INPUT type="text" name="zipcode"
style="width:45px" maxlength=5></td></tr>
<tr><td>Country</td><td> </td><td><select name="country"><option selected>
</option>
<%
'updates country list dynamically
Set oRSc=Server.CreateObject("ADODB.recordset")
Set conn2=Server.CreateObject("ADODB.connection")
conn2.Open "DSN=DataBase; uid=username; pwd=password"
sqlCountry="SELECT DISTINCT Country FROM ORG_TABLE;"
oRSc.Open sqlCountry,conn2
oRSc.MoveFirst
Do While not oRSc.EOF
Response.Write "<option>" & oRSc("Country") & "</option>"
oRSc.MoveNext
Loop
oRSc.Close
conn2.Close
%>
</select></td></tr>
<tr><td>Title Keyword</td><td> </td><td><INPUT type="text" name="title"
style="width:175px"></td></tr>
</table>
<br>
<Input type="submit" value="Submit"> <Input type="reset" value="Clear Form">
</center></form>
</BODY>
</HTML>
**************************************
PAGE 2: Simple HTML (session variable carries over on this page and the security include works fine)
<%@ Language=VBScript %>
<%Response.Buffer=True%>
<!--BEGIN SECURITY INCLUDE CODE---->
<%
If Session("member")<>"true" then
FName=Request.Cookies("UserInfo")("FirstName")
LName=Request.Cookies("UserInfo")("LastName")
UName=Request.Cookies("UserInfo")("UserName")
Pass=Request.Cookies("UserInfo")("Password")
ID=Request.Cookies("UserInfo")("NameID")
If Fname="" or UName="" or Pass="" or ID="" then
Response.Redirect "/login.asp?logcode=4&ReturnURL="&Request.ServerVariables("Script_Name")
Else
Dim connsec,rsValidate,querysec
set connsec=Server.CreateObject("ADODB.connection")
set rsValidate=Server.CreateObject("ADODB.recordset")
querysec="Select NameID,FirstName,LastName,Password from USERTABLE where Username='"&UName&"';"
connsec.Open "DSN=DataBase;uid=username;pwd=passworkd"
rsValidate.Open querysec,connsec
if rsValidate.EOF then
rsValidate.Close
connsec.Close
Response.Redirect "/login.asp?logcode=2&ReturnURL="&Request.ServerVariables("Script_Name")
else
rsValidate.MoveFirst
If Pass<>rsValidate("Password")Then
rsValidate.Close
connsec.Close
Response.Redirect "/login.asp?logcode=2&ReturnURL="&Request.ServerVariables("Script_Name")
Else
Response.Cookies("UserInfo").Expires=date+90
Session("member")="true"
rsValidate.Close
connsec.Close
End If
End If
End If
End If
%>
<!--END SECURITY INCLUDE-->
<HTML><HEAD>
<title>SIMPLE HTML</title></HEAD>
<BODY BGCOLOR="#FFFFFF" text="#000000">
<Center><H2>BYLAWS PAGE<BR>(ACCE)</H2>
<A HREF="history.asp">History</a> <B>|</B> <a href="boarddirectors.asp">2001-2002
Leadership</a>| <b>Bylaws</b>
<P><br><a href="Bylaws.pdf">Click here to view Bylaws in pdf format</a><br><br.
</Center>
</BODY>
</HTML>
********
Why is the session ("member") understood to be "true" in the second page but has no value in the first page? If you need further
information please email me.
Thank you
Anh Do
ACCE
anhdo@a...
> -----Original Message-----
> From: jstmehr4u3@a... [SMTP:jstmehr4u3@a...]
> Sent: Tuesday, January 22, 2002 6:04 PM
> To: ASP Web HowTo
> Subject: [asp_web_howto] Re: How do I carry a session variable across multipe web pages
>
> Can you please show your login code, especially where
> you are setting session("member") = "TRUE", after the
> validation.
>
> TIA,
> MIKE
> > I am having problems carrying session variables across multiple web pages.
> > When a user has been authenticated on my web site, www.acce.org, I create
> > a session variable called session("member")="true"
> >
> > If this variable is blank then the user cannot access members-only pages.
> >
> > But when I try to carry the variable over to another page it comes up
> > empty. On the login page, where the session variable is created, it will
> > show as "true", but on other pages it comes up blank.
> >
> > I put this code at the top of every member-only page:
> >
> > <%@ LANGUAGE=VBSCRIPT%>
> > <%Response.Buffer=True%>
> > If Session("member")<>"true" then
> > 'User is redirected to login page where session("member")="true" is created>
> > End if
> >
> > ......
> >
> > When I recall the variable session("member") nothing comes up and so the
> > user is always redirected to the login page even if they already
> > authenticated earlier. The session variable is not carrying over from the
> > login page. Is there something I am missing?
> >
> > Thanks for any input.
>
Message #9 by "Vinod T.G" <vinodtg@h...> on Thu, 24 Jan 2002 14:24:54 +0000
|
|
HI ,
we were facing the same problem once. solved it by reinstalling windows and
IIS. some where i read that the session varaibles will not be carried or
treated properly if IIS was not installed properly.
Hope it helps
Vinod
>From: <sathish297@y...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] Re: How do I carry a session variable across
>multipe web pages
>Date: Wed, 23 Jan 2002 10:26:43 +0530
>
>Hi,
>
>1) VBScript is case-sensitive.
>2) Specify session.timeout=30 in all pages
>
>
>With Regards,
>R. Sathish Kumar
>sathish297@y...
>
>
>----- Original Message -----
>From: <jstmehr4u3@a...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Sent: Wednesday, January 23, 2002 4:33 AM
>Subject: [asp_web_howto] Re: How do I carry a session variable across
>multipe web pages
>
>
> > Can you please show your login code, especially where
> > you are setting session("member") = "TRUE", after the
> > validation.
> >
> > TIA,
> > MIKE
> > > I am having problems carrying session variables across multiple web
>pages.
> > > When a user has been authenticated on my web site, www.acce.org, I
>create
> > > a session variable called session("member")="true"
> > >
> > > If this variable is blank then the user cannot access members-only
>pages.
> > >
> > > But when I try to carry the variable over to another page it comes up
> > > empty. On the login page, where the session variable is created, it
>will
> > > show as "true", but on other pages it comes up blank.
> > >
> > > I put this code at the top of every member-only page:
> > >
> > > <%@ LANGUAGE=VBSCRIPT%>
> > > <%Response.Buffer=True%>
> > > If Session("member")<>"true" then
> > > 'User is redirected to login page where session("member")="true" is
>created
> > > End if
> > >
> > > ......
> > >
> > > When I recall the variable session("member") nothing comes up and so
>the
> > > user is always redirected to the login page even if they already
> > > authenticated earlier. The session variable is not carrying over from
>the
> > > login page. Is there something I am missing?
> > >
> > > Thanks for any input.
>$subst('Email.Unsub').
> >
>$subst('Email.Unsub').
>
>
>
>_________________________________________________________
>
>Do You Yahoo!?
>
>Get your free @yahoo.com address at http://mail.yahoo.com
>
>
>
>
>$subst('Email.Unsub').
_________________________________________________________________
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx
Message #10 by <sathish297@y...> on Thu, 24 Jan 2002 19:34:32 +0530
|
|
Hi,
I tried the same thing . Here is the code
1. session_1.asp
--------------
<%
'comment it out and refresh
session("member")=true
if session("member")="true" then
Response.write session("member")
end if
%>
<br>
Page 1
<br>
<a href="session_2.asp">page 2</a>
2. session_2.asp
-----------------
<%
session("member")="true"
Response.write session("member")
%>
<br>
Page 2
<br>
<a href="session_1.asp">page 1</a>
3. Now i try to run session_1.asp after making the following changes
if session("member")="TRUE") then
.....
Now the result is different. Is it the same for you ?
With Regards,
R. Sathish Kumar
sathish297@y...
----- Original Message -----
From: "O'Hara, Elliott M" <EMOHARA@k...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Wednesday, January 23, 2002 7:15 PM
Subject: [asp_web_howto] Re: How do I carry a session variable across
multipe web pages
> ummm...
> VBScript isn't case sensitive...
>
> -----Original Message-----
> From: sathish297@y... [mailto:sathish297@y...]
> Sent: Tuesday, January 22, 2002 11:57 PM
> To: ASP Web HowTo
> Subject: [asp_web_howto] Re: How do I carry a session variable across
> multipe web pages
>
>
> Hi,
>
> 1) VBScript is case-sensitive.
> 2) Specify session.timeout=30 in all pages
>
>
> With Regards,
> R. Sathish Kumar
> sathish297@y...
>
>
> ----- Original Message -----
> From: <jstmehr4u3@a...>
> To: "ASP Web HowTo" <asp_web_howto@p...>
> Sent: Wednesday, January 23, 2002 4:33 AM
> Subject: [asp_web_howto] Re: How do I carry a session variable across
> multipe web pages
>
>
> > Can you please show your login code, especially where
> > you are setting session("member") = "TRUE", after the
> > validation.
> >
> > TIA,
> > MIKE
> > > I am having problems carrying session variables across multiple web
> pages.
> > > When a user has been authenticated on my web site, www.acce.org, I
> create
> > > a session variable called session("member")="true"
> > >
> > > If this variable is blank then the user cannot access members-only
> pages.
> > >
> > > But when I try to carry the variable over to another page it comes up
> > > empty. On the login page, where the session variable is created, it
> will
> > > show as "true", but on other pages it comes up blank.
> > >
> > > I put this code at the top of every member-only page:
> > >
> > > <%@ LANGUAGE=VBSCRIPT%>
> > > <%Response.Buffer=True%>
> > > If Session("member")<>"true" then
> > > 'User is redirected to login page where session("member")="true" is
> created
> > > End if
> > >
> > > ......
> > >
> > > When I recall the variable session("member") nothing comes up and so
the
> > > user is always redirected to the login page even if they already
> > > authenticated earlier. The session variable is not carrying over from
> the
> > > login page. Is there something I am missing?
> > >
> > > Thanks for any input.
> $subst('Email.Unsub').
> >
> $subst('Email.Unsub').
>
>
>
> _________________________________________________________
>
> Do You Yahoo!?
>
> Get your free @yahoo.com address at http://mail.yahoo.com
>
>
>
>
> $subst('Email.Unsub').
>
$subst('Email.Unsub').
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
|
|
 |