Is there a way of detecting what the causes is on a undefined error without using asp?
Asp scripts have stopped working on my site. HTML pages still work, but not if I change the extension to ASP. I get a 500 error, even when the asp script only contains HTML.
My host is Fasthosts but my reseller never returns my emails.
I have the following asp code and the functionality works, but before it works a dialog box pops up and says 'Runtime error 'Episodes' is undefined. I don't know how to get rid of it. Anyone have any ideas?:
for i=1 to 5 response.write "<tr><td><a style='text-decoration: underline;' class='biosLinks' href='http://www.url.com/Episodes/episode" & i & ".wmv' onclick='window.open(Episodes/episode" & i & ".wmw); return false'>Episode " & i & "</a><br></td></tr>" next
I am trying to insert values into a database using an sql statement that i read from a table that contains all my different sql commands. The sql statement is stored in the following way in the table: Code:
how to use an array variable in asp i want to know how to difine it and use it as a session varible actually what i want is keep several mail addresses in a session variable i hope the way is difine a array variable and assing it to a session need .
I have a declared a session variable array. I want to create an array in my client side vbscript with the same values. I know you can set an array in server side script equal to the session variable array.
Ex. AryDocCache() = Session("DocCache")
How do you set an array in client side script equal to the session variable array?
I know this does not work. AryDocCache()= <%=Session ("DocCache")%>
I need to create an array with a session variable. According to thebook I'm using, 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 Any suggestions where I'm going wrong.
I have a main page 'album.asp' which server.executes a file 'alicia2.txt'.
I am currently using session variables to move the values of the variables back and forth. I have run into a problem with an array. I currently have : Code:
if i have a vbscript function on a certain form and I assigned some values on an array variable on that function, is there a way for me to retrieve the values of that array on another asp page once i submitted the form?
My site web is using database in ACCESS. I'M using a Table and a Query, the table work fine but the Query don't work.I got the error : Undefined "NZ" function. I did some search and found that when query are used, it use a function "NZ" to replace NULL with " ". But ASP can't use that. It's what I understood. I found some code to repair this but they modify my Database, and I don't think I should do this because maybe it could crash it.Somoene know how to get ride of this with out modifying the DB?
I have an ASP page in which I reference quite a few ADO constants such as adOpenStatic, adLockReadOnly and they work fine but a reference to adUseServer comes up as undefined?
I'm using Query String and using arrays to select data for a flash file.The 'type mismatch' is where my array starts.I'm not sure i'm using it the right way or not?
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:
please see the variable in red, this variable is basically a search string, this works perfect if there is no space in search string, but if there is space like "air condition" then it only takes the first word "air" and leaves the "condition", is there a way i can keep both words together Code:
I am getting the following error when I run my page I just created. The first time I run the page I get this error, if I run the page a second time I get no error and everything works fine. This is the case everytime.
i have a table 'Accounts' in my database, which contains a bunch of users. From the main menu i choose "edit user" and all users in the db are presented in a table. The first column 'Pnr' is a unique ID for each user that i made appear as a link. clicking on one userID should present a form where the picked users userdata is already filled in so i can easily edit it and then move on to submit the form to update the db. i get to the part where all users are listed nicely in a table, but clicking on one, i get this error:
Error Type: ADODB.Recordset (0x800A0CC1) Item cannot be found in the collection corresponding to the requested name or ordinal. /VS_Files/updateUserForm.asp, line 19
I think i'm doing something wrong with passing a value with the querystring...? Code:
This query sort on the basis of Lft and Rgt columns.
The name of the array is: aEmp.
My question here is how can I get only the LastName from the aEmp array into another array so that I can sort the names alphabetically and then display the employees in the alphabetical order.
Or is there is another way I could this by using the same array while keeping the lft and rgt sort of the query? If I sort based at the SQL query level, I can see the names sorted by the lft, rgt and lastname, but since the lastname is at the end of the sort list - it does not appear alphabetically.
In working with arrays, I have found that I am unable to dimension and array with a variable that has an integer value but I can redimension one this way. I haven't see any information that tells me if this is a requirement, although it appears to be because I get an error if I try it.
Ex.
Dim b b = 10 Dim a(b) ' this errors out but Dim a() ' this Redim a(b) ' works
I want to create a new array called arrNames2 and copy contents of arrNames to arrNames2.
I then want to loop through my db and add more names (while going through the loop) to arrNames2. What is the best way to do this? Do I have to keep redim the array wehn I add more names?