Search the web
Sign In
New User? Sign Up
active-server-pages · Active Server Pages Developers' List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 12106 - 12135 of 12403   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12106
I've got things set up to develop Classic ASP on my Windows XP Pro computer and things appear to work just fine with one exception - session variables are not...
George L Smyth
GLSmyth
Offline Send Email
May 3, 2007
3:00 pm
12107
Hi George, ... Off hand I can think of two reasons why it might not be working. First, and most likely, your browser might be set to reject session cookies for...
Shawn K. Hall
shawn_ra
Online Now Send Email
May 3, 2007
6:16 pm
12108
either cookies are disabled on your browser, or the session is not coded correctly. ... From: George L Smyth <George.Smyth@...> To:...
shortestpath
Offline Send Email
May 3, 2007
11:05 pm
12109
... coded correctly. Cookies are enabled. I have a program with the following code: <% Session("Test") = "Hello" %> <% response.redirect "test1.asp" %> ...
George L Smyth
GLSmyth
Offline Send Email
May 4, 2007
12:18 am
12110
Cookies are definitely not an issue (I can log into all sites on the Internet) and the problem is showing in both IE7 and Firefox. I went ahead and added a...
George L Smyth
GLSmyth
Offline Send Email
May 4, 2007
12:33 am
12111
Do you have a global.asa file? Your global.asa file should have a sub Session_OnStart 'some code Dim session("test") Session.test = "" end sub I think it might...
Kim Mitchell
mitchkinyc
Offline Send Email
May 4, 2007
1:15 am
12112
A few minor changes and it works for me..... Test1.asp <% Session.Timeout = 30 Session("Test") = "Hello" Response.Redirect("Test2.asp") %> and Test2.asp <%...
Madòrick
madorick
Offline Send Email
May 4, 2007
1:16 am
12113
This is a known (but basically unreported) error with IIS6 and classic ASP. If you implicitly set your session.timeout to a specific value it can help, but...
walterw@...
Send Email
May 4, 2007
3:14 am
12114
you must be under contract to be vague or something. next two questions would be: 1) how is your object defined? 2) what is the exact error message? The...
shortestpath
Offline Send Email
May 4, 2007
7:22 am
12115
Kim - Thanks. I tried that but it didn't seem to make any difference. Cheers - george...
George L Smyth
GLSmyth
Offline Send Email
May 4, 2007
1:11 pm
12116
I went ahead and changed the code to what you have but that didn't appear to have any effect on things. The code works on my laptop and at work, but not on my...
George L Smyth
GLSmyth
Offline Send Email
May 4, 2007
1:14 pm
12117
Hmmm. My problem is via localhost on my home desktop, so I'm the only one on it. If I set the session variable then read it within the same program then it...
George L Smyth
GLSmyth
Offline Send Email
May 4, 2007
1:17 pm
12118
Ooc, Have you tried actually navigating to another page and then navigating to the page which shows the session? It shouldn't matter, _but_ I've had this...
Scott McDonald
voxecho
Offline Send Email
May 4, 2007
3:19 pm
12119
I am pretty sure I've already seen this same email. I thought I had responded before however if I didn't, it may be because no answer can be given that wasn't...
Scott McDonald
voxecho
Offline Send Email
May 4, 2007
3:20 pm
12120
Thanks for the guess but unfortunately that didn't work either, so I'm completely at a loss, unless as suggested, it is just a bug and there's nothing I can do...
George L Smyth
GLSmyth
Offline Send Email
May 5, 2007
12:35 am
12121
In the tests I ran, granted it was only two servers - but both were professionally hosted, I'd look at the Session.SessionID - and it would change as often as...
walterw@...
Send Email
May 5, 2007
3:09 am
12122
George, What do you mean when you say "another program"? Do you mean: 1) a different page within the same application, or 2) a different page in a different...
shortestpath
Offline Send Email
May 5, 2007
11:11 am
12123
... I mean that the following works: <% Session("Test") = "Hello" Response.Write Session("Test") %> but if I redirect to another page or use a link to get...
George L Smyth
GLSmyth
Offline Send Email
May 5, 2007
3:23 pm
12124
It appears that the problem is within the browser itself. I just tried my test within Internet Explorer 7 and it worked just fine. (I thought that I had...
George L Smyth
GLSmyth
Offline Send Email
May 5, 2007
7:33 pm
12125
I think you missed my question about the application (being same or different). My question had to do with "web" applications. When you go from the first page...
shortestpath
Offline Send Email
May 6, 2007
7:02 am
12126
Alex - Okay, now I understand. The test programs are both on my computer in the same folder. This is a Firefox thing, as it works properly in IE. I've looked...
George L Smyth
GLSmyth
Offline Send Email
May 6, 2007
10:11 pm
12127
One way I can get my firefox to NOT keep the session for localhost is to go to Tools > Options > Privacy > Cookies section > Exceptions > add address/site...
shortestpath
Offline Send Email
May 7, 2007
3:23 am
12128
... is to go to Tools > Options > Privacy > Cookies section > Exceptions > add address/site localhost with status of block. Have you checked this? (I figured...
George L Smyth
GLSmyth
Offline Send Email
May 7, 2007
11:32 am
12129
I have a script, it looks like javascript, but it may be something else. It uses Math.pow(x,y). This is x raised to the y power. I see there's a vbs function...
Chris Hagwood
chris_hagwood
Offline Send Email
May 9, 2007
3:11 pm
12130
EXP(n) is the inverse of the LOG() function. No you do not want this... I think what you want in VBscript is "result = number ^ exponent" Try this.... ...
Madòrick
madorick
Offline Send Email
May 9, 2007
11:24 pm
12131
Thanks, I thought about the ^ late yesterday, but didn't get a chance to try it yet... I think that may be the ticket. ... [Non-text portions of this message...
Chris Hagwood
chris_hagwood
Offline Send Email
May 10, 2007
10:26 am
12132
Hello All: I am not sure the best way to approach this. Is there a control in ASP.Net 2.0 that would allow me to display a thumbnail image, and when I click on...
Andy Mills
mothernature...
Offline Send Email
May 12, 2007
2:39 am
12133
I have a page that when submitted passes form variables to let's call it page2. Page2 does not really display or return anything, it formats and sends an email...
Madòrick
madorick
Offline Send Email
May 14, 2007
2:43 pm
12134
Hi Madòrick, ... No. You can't FORCE a submit, but you can request one. ... No. Post data is not preserved. ... The simplest way to handle this is to spit the...
Shawn K. Hall
shawn_ra
Online Now Send Email
May 14, 2007
9:54 pm
12135
plz help any1 regarding reservation project i'm in college i'm doing airlines sysytem(site) i met with some probs. plz guide me. send any reservation project...
tatsat_infotech
Offline Send Email
May 17, 2007
8:50 pm
Messages 12106 - 12135 of 12403   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help