Call Subs, Files, Functions, Etc. From Javascript
is it possible to call ASP subs, files, functions, etc. from Javascript commands? I want to have a setup of various buttons where clicking on a button would call an ASP sub to grab info from a db.
is it possible to call ASP subs, files, functions, etc. from Javascript commands? I want to have a setup of various buttons where clicking on a button would call an ASP sub to grab info from a db.
I have created several functions and subs in both VB and Java. How can I put
these into a file to be called by different pages.
Is there a way i can call a javascript function from within the body of some html? Code:
View Replies View RelatedI have written a very complex web app for intranet use. It allows users to search a large database and then returns formatted results. I am currently employing a method as below: Code:
View Replies View RelatedHow to call functions outside server-side script?
View Replies View RelatedI've got a page displayin a CV and want to have two buttons, one to display the page in printable format and show the print dialog box and the other as a Save As button to show the save as dialog box. does anyone know the two javascript functions.
View Replies View Relatedis it possible to call asp with javascript. can you give me a sample? is it possible to call asp with javascript?
View Replies View RelatedI am working on an asp page, but I want to validate a form from a client side, with Javascript. The problem is, I am not very sure where to call the function, either in the form tag or in the button submission. The worse is, I have no idea how to validate that function in my asp tag. Hope that someone can help. here's my code:
View Replies View Relatedhow do i call my javascript function from my asp?
<script language="javascript">
function enableField()
{
document.deleteform.delete1.disabled=false;
}
</script>
this is my part of asp code:
<%
If(Session("validated_user") = "ADMINISTRATOR") then
enableField()
end if
%>
any idea?
I have created a JavaScript function to validate values of a parameter. Let's say validate(parm). I have saved the entire file as validate.inc and included in my ASP page as:
<!--#include virtual="/Validate.inc"-->
Now from an ASP page I want to call JavaScript validate function and pass on a parameter, X, to validate. How do I call a JavaScript function from an ASP page?
I am trying to call a javascript function from a vbscript function. The problem is it keeps saying variable not defined and it does not need to be defined. I need it to execute the javascript function when flagit = 6. Code:
View Replies View RelatedHow to call asp page with a javascript command.
View Replies View RelatedI've been playing with the idea of just how to use an ASP page to provide a
remote function call. In an ideal world this would be a web service but how
can you do it if restricted to ASP 3.0 ?
Idea 1 was to write an ASP page that accepted arguments using the classic
?X=1&Y=2 type of strings and have the page return an ADO disconnected record
set containing the results of the action. This is call very well, and works,
but you do have to allow the browser to create an ADODB.RecordSet in which
to place the results which goes against some security principles. Code:
Guys Just in case anybody know how to pass a javascript object in ASPCASE:
I have an input button with a Click event
<input type="button" onClick="JScript: done(this,<%param1%>,<%param2%>)"
Now param 1 and param 2 are ASP variables whic I sucessfully requested in another asp
page.. like this...
<input type ="hidden" value="<%=param1%>">
<input type ="hidden" value="<%=param2%>">
Now the problem is I want the object "this" to be passed to another page.
How do I go about calling a server-side vbscript within a client-side
javascript function? What I have is a page heavy on the javascript that has
a number of functions, one of which is to begin a visual countdown with an
onclick and also open an asp page containing the server-side vbscript, which
initiates a wake-on-lan call. I had no idea how to call the vbscript within
the javascript function, so this is why I opted for the vbscript asp page
"pop-up" via window.open. Code:
I am trying to get a page that loads up a different include file depending on which input form button was clicked.
I can get it to work with just one if statement but once I put a second if statement in I get the following error
Quote: Error Type:
Microsoft VBScript compilation (0x800A03F6)
Expected 'End'
/ordersearch/ordersearchresults.asp, line 27
Now no matter where I have though of putting my end if the page now doesn�t work. Does anyone know of the solution??? Code:
In global.asa I have some code outside all the Subs.
I have some confirmation that it is being executed OnStart.
Yet I can's see if it is executed OnEnd.
The literature I have says that OnEnd the Sub Application_OnEnd is executed,
but is does not say that anything else is executed
Actually I even can't understand if global.asa is permited to have any code
outside the Subs Could someone comment on this?
I want to have a list of links on my ASP page that call specific info from different subs on the page into a <div>. So I'd have a menu-like list on the left, say:
LINK 1
LINK 2
LINK 3
so LINK 1 would call and display the info from the sub called, say, "link1", and LINK 2 would call and display info from the sub "link2", etc.
then on the right would be the <div> to contain the requested info from the sub.
Any suggestions? I've trawled the net for answers but when you don't really get the terminoligy, etc, its very hard to know what you're looking for!
I am trying to create a user administration section and I want to use a subroutine that connects to a database, runs a query, returns a result and then closes the database connection. Then I would like to be able to access this result e.g a COUNT of fields in a table, in other pages.
Is this possible using Subroutines, if so how, and what other ways do you guys use code reuse in ASP?
I have a file i created
it contains several functions, and some other code to build a string based on diffrent vars.If i run this file standalone, it works absolutly fine. However the problem comes when i include it half way in another script.
I get the following..
VBScript Error 800a03ea
test4.asp, line 2 function encr..
This is line 2
Function Encrypt(Message, EncryptionKey)
I am searching for a function that can separate a string var to some string vars and devide the string by "," marks, os this possible?
example:
str1 = "2,34,1,54"
and I want "2","34","1" and "54" be devided and inserted into new vars, or an array var, is their a VBscript function for this?
I have made a function myself that does this using ths Instr and the Mid functions, but its quit messy and I don't wan't to have to insert it in every page I make, Any Ideas?
Another small thing, I want to learn how to use Classes in ASP, I don't know what to look for exactly, (vlince, I could use a link now...)
<%= functionName(value1, value2) %>
Trying to call a function which returns the modulo of two numbers, can l simply whack the function name in and the value will be returned ?
I've written the following function but somehow the output is not what I want it to be. Can someone explain to me what i'm doing wrong?
function fn_piping(inputWaarde)
outputwaarde = inputwaarde
Response.Write outputwaarde & "<BR>"
if i = 1 then
i = 2
call fn_piping("thisshouldbethefinaloutput")
else
fn_piping = outputwaarde
end if
end function
i = 1
figure = fn_piping("bla")
Response.Write "<BR>" & figure
So 'thisshouldbethefinaloutput' should be the final output, but it doesn't output anything?!
I need a current record in the database for it to work but I have another page that uses this same code and it works fine on that and the only thing different in the coding is where the information is being pulled from in the database and when i first copied & edited the page it worked fine but now it doesn't and i've worked on it .....
View Replies View RelatedI would like to call a asp function when i click a button in a form. I'm using VB. I know in Javascript it the onclick event is there a similar handler in VB????
View Replies View RelatedWhere's the best place for me to include all my functions that I want to call throughout different pages? Should I just put them all in one ASP file and include that page on every page? Or use global.asa somehow (how??)?
Anyways, I was just wondering because I didn't want to slow things down if I could help it (I didn't know if having another big file attached to every page when I'm just using a small portion of it was very effective or not)
i am wondering how to actually get the month in letters..... i have used a
strMonth = Month(Date)
but it is returning a number of the month... i would like to make this the actual month such as January, August, etc.... how would i go abt doing this in ASP.....
Over my years developing ASP applications and writing asp code in general I have created a library of nice little apps and functions that I use over and over again.
I was "thinking" about maybey setting up a site with all my useful functions, subroutines, and possibly applications for people to download and hopefully donate some money if they use them. Perhaps even have some apps for sale only.
The apps will mainly be my useful plugin developments such as guestbook, gallery, login system etc. My question however is do you think it would be worth the time and effort? Do you find yourself using plugins a lot?
I defo think the functions could be handy but again how many of you search for functions to help you out or indeed how many of you currently use functions you have gotten from other people? Would you donate something if you used them?
Mayby some of you have already done something like this and can let me know how you got on?
Didn't remember if anybody had started started like this, but I decided it would be cool to start it again. If you have a math function request ask it below, or if you have made one then add it:
I have a few cretegean plane (think thats how you spell it), calculations. One request I have is, does anybody have a short function for square root?
I have some code I am working on. One function reads a file using fso, then
I have multiple functions using the string read from the file. Each
function splits the lines up and will return one value.
Is there a better way? Is handling this many array which are basically the
same going to cause some server distress
I know there is the function IsNumeric() in ASP and we have a SUM function in SQL, but why don't we have the following functions in ASP:
Code:
Sum()
IsAlphabetic()
I have been developping a webpage in ASP for about 4 weeks now and I have noticed that I am rewriting similar functions in pretty much every page i make. So I was wondering if there is a way to make some particular functions global so that you can use them in any page. The functions will depend on the session id, but I don't know if i can declare session functions or not.
View Replies View RelatedIn this function i pass variables to it to find out if a record exists, what i want to do next is call this function and if a record does not exist pass a variable out like Statement = False and then pick up that value on the page that i call the function.
Can this be done? I was thinking perhaps using a Session? Code: