|
| ||||||||||
| Tags: asp, dynamic page, ie 7, session, website |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Session issues with asp
<% request.querystring("fadd") Session("add")=fadd Session.Timeout = 500 Response.Write(Session("fadd")) %> Please tell me the solution. Thank you. Last edited by Abhibhava : 04-12-2009 at 03:58 PM. |
|
#2
| ||||
| ||||
| Re: Session issues with asp
Well you seem to be making a mistake in your coding. The value I mean the string value of the Add has to assigned to a variable. It has to a request form to the query. The code should be as follows: <% Dim strFAdd strFAdd = Request.QueryString("fadd") Session("fname") = strFadd Session.Timeout = 500 Response.Write(Session("fadd")) %> Make the necessary changes in the code. This will then help you in making your session to work correct. |
|
#3
| ||||
| ||||
| Re: Session issues with asp
You should put or assign the Fadd into a variable so that it clears the session time value for the same. As your cod suggests that the line is not seteing fadd to a particaular variable and the desired query string code should have been as request.querystring("fadd"). fadd= request.querystring("fadd"). After doing it put your session here. That is Session(fadd)=fadd. This might work for you. |
|
#4
| ||||
| ||||
| Re: Session issues with asp
There could be a issue with the browser as well. As Internet explorer 7 does not support the session with asp well. It has a bug that disallows them to perform the things as so. Try out in different browser may be then you might be able to get access or make the session to expire on the desired time interval. This is a kind of general problem which does happen with some browser. Do make the changes first to your code and then implement the thing.
__________________ Grand Theft Auto 4 PC Video Game |
|
#5
| ||||
| ||||
| Re: Session issues with asp
The coding is par the mean that it not been assigned to a variable. But apart from the very thing you need to check out whether there is any sort if restrictions that is been disallowing the content to redirect to the desired page after the session is expired. Also if this is not the case then the possibility might be with the cookies. Delete the cookies as been filled it do not allow to write the files for execution.
__________________ The FIFA Manager 2009 PC Game |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Session issues with asp" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Difference between root session and standard user session in gimp | Gajagamini | Operating Systems | 4 | 17-01-2011 10:14 AM |
| Windows 7 console session becomes unresponsive after Remote desktop session | Krishanu | Networking & Security | 4 | 24-12-2010 06:58 AM |
| Session Handling In JSP | Sheenas | Software Development | 5 | 30-01-2010 01:24 PM |
| FTP problem - unable to make the session state request to the session state server. | Benito | Software Development | 3 | 31-07-2009 01:09 PM |
| Not able to open my session | GAINELL | Operating Systems | 3 | 04-03-2009 08:41 AM |