.asp With JScript (CANNOT FIND .log File)
There is a simple user tracking form on this website that asks users for info, then stores it in a log file at /logs/
This script is located in a file in /scripts/
When we attempt to submit the .asp form, the following error message comes up:
Microsoft JScript runtime error '800a004c'
Path not found
/cardin/scripts/usertrackproc.asp, line 22
Line 22, which has the mappath, reads as follows ....
View Replies
ADVERTISEMENT
I have an asp page written entirely in jscript with a vbscript used as an include file which one variable on the page must access.
When the page runs, I run into jscript complilation errors when it tries to access the include file (since it is written in vbscript), and I can't figure out how to get the two to work together. How do you get both scripting languages to work on the same page?
View Replies
View Related
is there a way, using asp, to find out the width and height of an image file?
View Replies
View Related
Loads of source code out there to upload files using VBScript. Anyone know of any JScript code to do the same thing.
View Replies
View Related
It works if the file in on the server side, how to use the component (DSOleFile) with the file on the client side? Also how can I calculate the width of the file. (Page set up - Landscape or porrait). Code:
View Replies
View Related
I'm looking for images in my asp page.
I know the path and first and last part of the filename.
Example filename: A01-30420.jpg
I have the A01- and the .jpeg. The ##### portion could be anything, but always numeric (sofar).
The A01 is unique, i.e. there will only be one file of A01-#####.jpg
I'm using fileExists object to confirm a file exists when I have the full filename but havn't been able to figure out how to get the full filename when I only have a partial.
I could rename the files, i.e. drop the -##### but I'd have to do that everytime I get new ones so I'd like to work with the original filename if at all possible.
View Replies
View Related
i have been trying to create a page that has the include file but it is not able to find the include file. the code is as follows:
<!--#include file="Connections/connECC.asp" --> (it is listed in index.asp page)
My site map is as follows:
Connections
(under Connections folder) connECC.asp
Templates
index.asp
View Replies
View Related
I need to load Excel file from client into a database in asp, before loading I need to verify the excel version and the file width ( and if possible length).
View Replies
View Related
I want to make an ASP page look at my index.html file, and give me a list of all the hyperlinks that are in this page. Is this possible, can anyone point me in the right direction?
View Replies
View Related
i get "system cannot find the file specified" error. iam sure that the path of file iam looking for is true. i guess this is a friendly message thrown. when i turned off the freind messages in IE (client side) i still get the same error. is there any way that i can see the exact error so that i can debug.
View Replies
View Related
I have the following code in which the sessionExpire() is function in JScript. To display a msg box. But fails.
<%
If Session.Contents("Access_Key") = "" Then
sessionExpire();
End If
%>
View Replies
View Related
need to learn ASP for a work project but don't really want to have to learn VBScript. Going forward, I'll also need to use ASP.NET so a book covering that with JScript would be good too.
View Replies
View Related
By VBScript I can use this code:
Response.Write "ABC"
How can I use JScript show "ABC"?
View Replies
View Related
Using JScript. is there a better way to write the following reg exp. or am I doing something right for a change ? Code:
View Replies
View Related
Would anyone be able to confirm that 'jscript.dll' is a necessary file for an .asp page on IIS 5.0 to use the <script language="JavaScipt" runat="SERVER"code? It looks like the code in this section is not working and being recognized since it keeps giving me:
"Microsoft JScript runtime (0x800A01B0)
File name or class name not found during Automation operation"
and am suspecting that this jscript.dll file is a necessary file that's missing or not installed since my search on the webserver's c drive came up empty.
View Replies
View Related
I'm working on a project and the designer guy uses templates for everything. THis is fine except I have to call a JScript function when the page loads and I have no access to the body tag. Is there a way to call the function as the page loads from a VBScript command?
View Replies
View Related
<%@ Language=JScript %>
<%
print "OK";
%>
But,it's error.My computer was installed IIS
View Replies
View Related
I've started implementing my ASP pages (in JScript) using the Try/Catch error handling.
Mostly it is working very well. It gives a nice custom error page which looks somewhat more professional than the default.
However there seems to be one limitation, the error object thrown to the catch statement doesn't include the line that the error occured on. Is there any way to obtain this information?
View Replies
View Related
How to convert this from vbscript to jscript?
MBRequest("File1").Save
MBRequest is a script component
View Replies
View Related
The eval function in JScript doesn't work according to
spec. Specifically, the function C() on page 73 of the
ECMA-262 spec doesn't return the function object
correctly under IIS 5. Binding the anonymous function to
a variable name and then evaluating that works as a
workaround, e.g.
function C() {
return eval("var x = (function (x) {return x*;}); x");
}
works. However, it should be possible to simply evaluate
a function without binding it to a name using the eval
function, especially since the spec has an explicit
example of this.
View Replies
View Related
I am used to doing this in VBScript. But I am not able to get this to work in JScript.
My code simply tries to add 1 a variable which holds a char and parse into an int. But instead of a value of 2 for an addition for 1+1, I see 11.
sCount = Request.Querystring("Count");
//sCount outputs a value of 1
sNextCount = parseInt(sCount + 1);
Response.Write (sNextCount);
//outputs 11 instead of 2
Is parseInt wrong?
View Replies
View Related
Can someone tell me , how to apply jscript in dreamweaver, as well as the example, because I am trying to run jscript script with an include file ....
View Replies
View Related
According to MSDN: "new variables or types defined in the
eval statement are not visible to the enclosing program."
However, in some cases under IIS 5, this is not the case.
Try the following program:
eval("var z = 12; 5;");
Response.Write(z);
According to the documentation this should be an error;
however, it prints "12".
View Replies
View Related
how can i pass a parameter in javascript by referrence.
View Replies
View Related
Im still working on some <%@ LANGUAGE=JScript %> code ;).What is the same command as VbCrLf in JScript?I just want my HTML to jump one line down.
View Replies
View Related
I generally code ASP in VBScript, where I would do this:Code:
<%
response.redirect("anotherpage.htm")
%>
How do I do this in JScript? I keep getting the error "response is undefined".
View Replies
View Related
i have a jscript that accepts parameters/arguments, how do you loop thru the arguments?
i = 0;
while (!i == oArgs.length ) {
WScript.Echo[oArgs(i)];
i = i + 1;
}
this does not even get inside the loop.
View Replies
View Related
If I have a .ASP page that runs JScript code - is it possible to include an ASP page that runs VBscript?
View Replies
View Related
i have a website that users log on to. On one of the pages is a form. What I want to do is only show a certain part of the form for specific users. The way i want to do this is by using their username as a 'show if' command in dreamweaver. What I currently have is this
<% If Session("MM_Username") = "union" %>
all data to be hidden shown is here
<% End If %>
But this doesnt work for me! Any suggestions on how to show this properly?
View Replies
View Related
At the top of my ASP page I declare <%@ Language=VBScript %> what do I have to write to embed some JScript in that page? Do I have to indicate that the code is intended to execute at the client side (if it is the case)?
View Replies
View Related
Do most people use vbscript or jscript to control their ASP pages? I'm trying to decide which to learn.
View Replies
View Related
i have a page of asp (jscript) but the CAPTCHA code im using is vbscript. Can i use boths languages on my page? obviosuly i cant use two language tags, is there a way around this?
View Replies
View Related
I want to count how many characters there is in a string. In ASP I just use <%=Len(Variabel)%> How do I do this in Jscript? How can I display only a numer of characters from a variabel or a string? In ASP I use <%=Left(Variabel,20)%> How do I do this in Jscript? THe code i use is part vbscript and jscript. translate it to pure JScript.
var dot
if(Len(oEventsList.GetBody()) > 20)
{
dot = "..."
}
Response.Write (Left(oEventsList.GetBody(),20) + dot + "<br><br>");
View Replies
View Related