JSCRIPT And ASP

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


ADVERTISEMENT

Run JScript In ASP Tag

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

JScript

By VBScript I can use this code:

Response.Write "ABC"

How can I use JScript show "ABC"?

View Replies View Related

Reg Exp - JScript

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

Jscript.dll On .asp Page?

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

Calling JScript

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

Print In JScript

<%@ Language=JScript %>
<%
print "OK";
%>

But,it's error.My computer was installed IIS

View Replies View Related

JScript Try/Catch

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

Vbscript 2 Jscript

How to convert this from vbscript to jscript?

MBRequest("File1").Save

MBRequest is a script component

View Replies View Related

JScript Eval Bug

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

How To Convert Into The Int In JScript?

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

Jscript Dreamweaver

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

Another JScript Eval Bug

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

Pointers In Jscript

how can i pass a parameter in javascript by referrence.

View Replies View Related

VbCrLf In Jscript

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

JScript - How To Redirect

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

Jscript Looping

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

JScript And VBscript

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

JScript Show

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

VBScript And JScript

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

Jscript Or Vbscript

Do most people use vbscript or jscript to control their ASP pages? I'm trying to decide which to learn.

View Replies View Related

Using Vbscript And Jscript

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

VBscript And JScript

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

Jscript Or Javascript?

I need to do some client-side scripting for my Intranet and was wondering if
Jscript or Javascript would be better? Everyone here uses IE 5.0 +, so I
need to make a decision...

View Replies View Related

JScript & GetRows

I currently thinking of converting from my little knowledge of
VBscript to jScript ASP.

With this in mind I'm looking at my current code to see how it will
convert over to Jscript.

One thing I have spotted that I can't think of a way round is the ADO
recordset.GetRows command.

I have a VBscript class that handles my DB connections so in short I
can do things like

MyArray = clsDB.GetRecordsInArray("Stored Proc Name/SQL", other
params)

and this would return the rows into a 2 dimension array.

Problem is I've read that Jscript only has one dimension. So how is
the "getRows" solved for Jscript.

Also is there any good "Jscript" code learning sites?

View Replies View Related

Cut From String Using JScript

I have this string:

/sites/binaer/demo/fil/Winnie-the-Pooh 1024x768.jpg

If I wanted to cut everything before Winnie-the-Pooh 1024x768.jpg, how would
I do this?

In VBScript I could find the first "/" from the back of the sentence, and
cut everything before that, but I'm not shore how to do this in JScript...

The string I want to end up with is Winnie-the-Pooh 1024x768.jpg

Any idea??

View Replies View Related

VBscript Vs Jscript

I'm stating out doing some web developing. I Know CSS, HTML, T-SQL. I can look at the client javascript code and work out what it does but I can't really write it from scratch.

I know mainly VBscript. I was wondering should I drop VBscript and learn Jscript then code both the client & server code in Javascript/Jscript. I have a couple "CLASS" files in VBscript and was wondering how does Jscript do this ?

View Replies View Related

Jscript And VBScript

I am quite frustrated. The mai9n reason is because I don't understand how internet works. I know VBScript and I know a little bit of Jscript. I began a program (website) with vbscript (ASP) and after coding some files, i found out that it ain't cross-browser compatible so I decided to switch to JS. Now I have started to use JS in ASP and this is what TimLensen said.

You could convert it to serverside Jscript but I wouldn't recommend it since not much asp apps are written in Jscript these days, it doesn't really have a point either. Learn the basics of asp at w3schools. Don't just look at the code and copy it and change it a bit but try to understand how the internet works.

View Replies View Related

File Upload Using ASP & JScript

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

Cdonts Mail To Jscript

Am looking for help in converting a CDONTS mail form script, which is not supported by my new host, into jscript. I have no fromal training in programming etc... Have self taught myself enough to probably get myself in trouble The following script i had written about 6 years ago for automated webimport intomy CRM "Goldmine" for populating database fields. Anyway, here is my old, and now worthless script...

View Replies View Related

CDO Email Attachment In JScript

I have a CDO mail script in JScript that works fine if I send the message without an attachment. However, I haven't been able to figure out how to attach a file without getting an error. Does anyone know how to attach a file to a CDO message in JScript?


<%@language="JScript" %>

<%
var cdoConfig = Server.CreateObject("CDO.Configuration");
cdoConfig.Fields("cdoSMTPServerName") = "12.34.56.78";

var cdoMessage = Server.CreateObject("CDO.Message");
cdoMessage.Configuration = cdoConfig;

var cdoBodyPart = cdoMessage.BodyPart;
cdoBodyPart.ContentTransferEncoding = "8bit";

cdoMessage.To = "name@company.com";
cdoMessage.From = "someone@mail.org";
cdoMessage.Subject = "CDO Test in JScript";
cdoMessage.TextBody = "This is a test email sent using JScript.";
cdoMessage.send();
%>

I've tried adding each of the following lines, but none of them works.

cdoMessage.AddAttachment "c:filesdocument.txt";
cdoMessage.AddAttachment( "c:filesdocument.txt" );
cdoMessage.Attachments.Add "c:filesdocument.txt";
cdoMessage.Attachments.Add( "c:filesdocument.txt" );
cdoMessage.AttachFile "c:filesdocument.txt";
cdoMessage.AttachFile( "c:filesdocument.txt" );

View Replies View Related

Dynamic Table Using JScript

I am trying to add rows to a table dynamically, using JScript. Can I someone
explain, how to add events to the newly added cells/ rows? Following code
does not fire the onmousemove event. Code:

View Replies View Related

Assigning An ASP Object To A Jscript Var

I have an ASP variable containing an XML object, i want to pass this object to a javascript object .... how can i do that?

one solution i know of is to write the xml in the page as an xml island and retriving this code using the document.getElementById....

is there another way where i can do that directly?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved