I have a function that I would like to use a session variable in. However I am not getting it to work out. I was wondering if you have define global variables inside functions like you do php or if something might be causing this?
I'm trying to use a variable like a file and I do not know if it is possible, like this:
varfunc=chr(60)&chr(37)&"function addone(varint) : addone = varint + 1: End function"&chr(37)&chr(62)
Now I have a addone function inside varfunc.
The value of varfunc is <%function addone(varint) : addone = varint + 1: End function%>
Is it possible I use varfunc like a file or something to make the function active? There are some operator like a pointer to variable or somehow to eval like a code block?
how to pass an asp session variable to a local variable withing a javascript function. Something like this:
var zip = <%=Session("clzip")%>
but it's the quotes around "clzip" that is throwing a syntax error I think. I've tried single quotes and no quaotes. Can't get it to work. Anyone have any ideas?
Having an issue trying to access a variable that is populated by a value inside a recordset that I want to use in another statement. I've included the source code below:
If frmSuburb = strSuburb Then Response.Write "Zone for " & strSuburb & " = " & strZone & " , Postcode = " & strPostCode & "<br>" strShipZone = strZone Response.Write strShipZone End If
objRSZone.MoveNext Loop "
So what I want is to use the strShipZone variable somewhere other than this place above. But it doesnt work, as it is on the loop, if i put it outside the loop it is populated by a wrong value.
I have a function that I'm using to loop through some db query results and put them into a table. Inside the function, I have a line to add certain values to a series of cookies (kind of like a cookie array) as such:
If I uncomment the second line, I pull my values just fine from inside the function. The problem is, if I use the exact same line to try to pull the values outside of the function, or from another page, it returns nothing. The whole reason I'm putting these values into cookies is so that I can pull this list up on another page, but I don't seem to be able to. Is there some reason that I would not be able to read a cookie that I set inside a function outside of it?
I'm developing an account lookup, mostly in ASP, that displays a list of radio buttons to select one account from those found in a recordset. Here is a snip of the account display, after the recordset is populated: Code:
I have been using session variables to pass a user name from one ASP page to another inside framesets for 9 months and it stopped working this week. I have made no code changes but there was a "security update" installed on the server a few days ago but I can't find out exactly what it was.
In the research I have done I found many articles on the subject of session variables in ASP pages inside framesets. From what I read a new session will be started every time a new ASP page is accessed until a session variable is set, once a session variable is set the session will stay the same from page to page, even when using frames. It is possible to start a session by setting a session variable in the global.asa file.
My page 1 sets the session variable "username", this page calls page 2 which then uses the "username" variable. This still works on the two test servers I have where no upgrades of any kind have been done. I changed the code to display the Session.SessionID in both page 1 and page 2. On my test systems I get the same session id number, on my production system I get two different session id numbers and when I turn on prompting for all cookies I get the session cookie prompt when the second page is called. The two test systems are on the same network as my workstation, the production machine on the internet at a hosting site.
I have cookies enabled in my browser, session state is enabled in IIS and there are no special characters in the domain name of the web site. I did not have a global.asa file so I added one and I set a session variable in the global.asa just to get the session started. What I find interesting is if I display the variable I set in the global.asa file I can see it on both page 1 and page 2 but on page 2 I can't see the variables set on page 1. I am completely stumped. Does anyone have any idea what I can do to get this working again? .....
I'm trying to take an ASP session variable and pass it into a javascript function with little success. As the page loads, the session variable is there and the javascript function is called as an include.
I've tried silly ideas like option explicit and using asp to write the javascript declaration of the variable.
Well, it's quite simple, it's easily done in C, but in ASP (and VB in general) i haven't been able to see it done...
function setvalues(var1, var2="a", var3="b") if var2="a" then response.write("Var2 wasn't defined") end if if var3="b" then response.write("Var3 wasn't defined") end if end function
I hope it makes sense, and that someone has the solution to it...
Here is my code: ... dim fname fname = rsAddwg2("file_name") response.write("<td align=center onclick=""tst(fname);"">" & revno & "</td>") ....
I'm trying to pass te variable fname to function tst, but I keep getting this error message "Error: 'fname' is undefined. I have a feeling that there is something wrong with my syntax but I can't figure it out.
I delete the files/cookies and clear history from the IE 6.0 browser and try to write in a text file use FSO but it dont write any thing in the file needs Code:
I'm trying to set a session variable after displaying a form, then capture the Session variable on postback. For some reason, the below code always returns the form, not the "Step 2" results part. What am I doing wrong? It's on a local network server, not on the web if that matters.
<% '* Step 2: Display results '********************************************** If Session("PageAction") = "view2" Then Response.Write "Results"
'* Step 1: Display form '**********************************************
I have created a session variable.... and i have to write code to check for this session for each ASP webpage in my website....Is there a alternative I do not want to repeat the same code for valid session.... in each page..
I first create a session variable 'client' in the login.asp file The login.asp file opens a file (xxx.asp) with an include file If I write <!--#include file="../../../data/" & session("client") & "/language_ger.inc"--> I have a message stating that the application can't find the file.
If I write the path without the variable (" & session("client") & ") <!--#include file="../../../data/eurovini/language_ger.inc"--> it works without any problem.
Question - is there is an error in the syntax? - is it possible to include this kind of variable in an include file. And if not, any idea to get the same result?
I'm new and I hope I explain this correctly.I have a products page which populate products dynamically with checkboxes. when the form is submitted, I check for selected boxes using the split(). My problem is, products page submits the form to client.asp, and within that page is client info. then the client page is submitted to confirmOrders.asp, which will display client info, and products selected. the split() works fine within the client.asp page. I'm trying to assign the checkboxs to a Session variable and use it on confirmOrder.asp. Then display the session variable on confirmOrders.asp page. I know I can do everything in one shot with confirmOrders.asp, but the client wants to display the client.asp page then the latter. hmm...hope this makes sense.
Is there a simple way to store session variable on the client-side javascript or retrieve the value of the session variable from the server-side session("variable") script onto the client-side script? I want to keep the value of user entry on the text field of an html form after refreshing.
The value of session variable is shown and the timeout value (60) shown as well. But immediately I get the error message "a timeout has been occurred, you have to log in again". If I make the highlighted sentence comment then I don't get the error.
Has somebody an idea why I receive immediately the timeout error?
A user field called 'Custom1' exists in my data base. This user field is used to hold a URL path to a custom download page for clients. Each client has their own unique URL which directs them to specific locations.What would the proper format be for the variable:
=Session("Cutstom1")
to be able to be displayed as a hyperlink with the label: "DOWNLOADS" while at the same time sending the current user to the 'value' / 'path' to which the Custom1 field contains? I am not an advanced coder and am just starting out with basics.
I assume that mostly,asp programmers use their own session variable to know whether a user is to be considered is-logged-on(together with a home-written log-on form web page).
However, I wonder if there is a convention for the name of such a variable?And does asp/iis have a built-in is-logged-on status variable? For example when IIS is to render a normal html page with an acl that invokes a basic authentication, can I as an asp programmer make use of that status variable, and can I write to it to force a logout programatically?
So, this is not about it there is a session as such, it is about beeing logge-on inside an asp-session. I've looked around but haven't found any good info on this.
I have drop down for selection of council - it is then passed to a session variable - it works fine to display the variable, but when I put it into a hidden field, if the value was Milwaukee it is fine, but if the value was Green Hills, it only puts Green in the hidden field. How can I fix this - I need it to put Green Hills in the hidden field.
when a session variable is declared,how long does that variable last?this isn't coming out of the global.asa.i'm pulling a field out of a db and declaring it with session(whatever)=whatever and then calling it out on the page.
i don't know where else to go, if there is a better or more appropriate forum for this question please let me know.
I have just moved to another isp host and some of my pages use session variables. I have a session variable, amongst others that hold the username and customer number to display data. The session variable value keeps disappearing giving me ADODB.Fielderror '800a0bcd' errors.
If i hot the refresh button a few times the session variable data comes back. Somebody please tell me they've experienced this 'cos i'm losing my mind ! I've updated the page to show the variable, and it does and i've removed underscores from filenames (apparently a possible problem with IIS 6)
i'm using the dundas freelib upload code to upload files in my website. when the user choses to upload a file a new window is opened and the upload procedure goes fine and the file is uploaded successfully. but the problem is the i want to know the name of the file in the parent window to save it in the database.
i tried to use a session variable which contains the name of the file but it dosen't work. the parent window contains a form which is used to insert new data in the database so i can't use the upload window to insert the filename in the database.
i don't know how to retreive the session variable from the previious page..i have also problem querystring application because the browser execute very slowly..and sometimes page will not be displayed.
I need to create an array with a session variable. According to my book, the following should work,. but if fails
for each key in request.QueryString if left(key,6) = "cboRun" then iIndex = cint(mid (key,7)) response.Write(iIndex & "<br>") session.Contents("iRunNo")(iIndex)=iIndex end if next
it is the (iIndex) part which fails. If I remove this, then I can create a single session variable.