Window - Jscript And Vbscript
I am using javascript to open the pop up window. Now the pop up window
will be displayed in a center position and in it the images will be
displays (one image at a time as the next and previous button is
clicked).
The images are retrieved and displayed using asp. Now is there
a way to shrink the size of the image so that it fits the size of the
pop up window and when I click on the image the image will be resized to
its original size. Code:
View Replies
ADVERTISEMENT
I got a weired problem when trying to use the window.opener object. I need to open a new window from a home page, and once I get into the new window(it's actually on another site), I need to get the url of the calling window(the window that opened the current window). Code:
View Replies
View Related
How to convert this from vbscript to jscript?
MBRequest("File1").Save
MBRequest is a script component
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
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
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
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
I do not know anything about JScript, VBScript or HTML, the only thing i know how to play its the famous frontpage. I was just wondering if there's someone out there that could give some more information on how to start, courses for newbies, begginers, books, anything at all would be very apreciated.
View Replies
View Related
I have the following code in an ASP page but it does not seem to allow a JScript to access VBScript variables. But if a VBScript accesses a variable in declared in a JScript TAG then it seems to work.
<SCRIPT LANGUAGE ="VBSCRIPT" RUNAT="SERVER"
Dim tes
test = 10
</SCRIPT><SCRIPT LANGUAGE ="JSCRIPT" RUNAT="SERVER"
Response.Write(test)
</SCRIPT>
View Replies
View Related
how to modify a function like this to specify the new window size? I'm able to specify window dimensions easily using window.open in javascript, but am at a loss for how to do it using this vbscript method. The 'strtext' are ASP recordset values. The page the opens in a new window is a map service.
<SCRIPT RUNAT=SERVER LANGUAGE=VBSCRIPT>
function mapLink(strtext)
on error resume next
mapLink = "<a href=""http://planning/ims/tpViewer/?Query=SDE_ADMIN.TP_AREA.TIMEPOIN_1%20%3D%20%27" & strtext & "%27&MapUnits=FEET&ActiveLayer=0&QueryZoom=Yes&Tools=Yes"" target=""_blank"">Map</a>"
End function
</SCRIPT>
View Replies
View Related
I would like to capture window close event, i.e. when user clicks "X" button of the browser, I would like to close all open dataabse connections.
Also, I would like this to apply when a user tries to close browser using File > Exit or when the user tries to type another website URL in the browser.
View Replies
View Related
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
1. I have a form, with a textbox and a button. I have to enter a value in the text box and then i have to click the button, which opens a popup window. Here i want to pass the value of the text box which is entered in the parent window to popup window.
I have to use that value in the popup window's form_load event in the Code behind, and i have to take the values from the database using the value which i have entered in the parent window. Code:
View Replies
View Related
I want to provide a lookup facility for users to select a code from a list. I want this to be done in a small popup window, which, when a code is selected, will close down and return the selected value to the main form. Can this be done ??
View Replies
View Related
I'am not familiar wit ASP but I have to maintain an application. In a window there are some text selection fields and a search button. If you press on the search button record list is build according to what is filled in the selection fields. You can select a record and then a detailed window is shown or in another occasion a popup window is shown.
The request is now if the opened window or popup window is closed, then the opener window has to be opened with the same content (content selection fields + record list) as it was before the window or popup is opened.
Now I thought that I have read that every window which is opened gets an ID and that it is possible to call up that window by the ID from the cache again. Is that right? And if so? Or has somebody a better idea. Code:
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
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