Function Call
how do I call a funciton in asp when the user clicks a button? I mean, i donīt think this will work:
<%
Sub MyFunc()
...
End Sub
%>
<input type="button" onClick="<% call MyFunc %>">
how do I call a funciton in asp when the user clicks a button? I mean, i donīt think this will work:
<%
Sub MyFunc()
...
End Sub
%>
<input type="button" onClick="<% call MyFunc %>">
I have a form which checks email addresses. On submitting the form i have some JavaScript checking the format of the email address, once this has been completed successfully I would like my asp function to run. On successful completion of that I would like my form to be submitted to another page. Is this possible?
View Replies View RelatedBy VBScript ASP
How can I call a function by click one button?
I'm trying to call asp function just simply by clicking a button But could i do this method? or how could i pass the function and values.It should be something like this:
<script LANGUAGE='VBSCRIPT'>
<!--
function btnClick_onclick
Dim strID
Dim strName
strID = document.form.txtID.value
strName = document.form.txtName.value
<%saveData(strID, strName)%>
End Function
-->
</script>
This can be in vb, vba, Delphi and a number of other development enironments - I just need to know if it can be done in ASP; if it can perhaps.
View Replies View RelatedI used this method to get the datas from array. After that, i call the function ora_login) by passing parameter but it doesn't work. It comes out 'Type mismatch' . it's there any method to do it?
for i=0 to ubound(cnn_ikh)
if i=0 then
ora = "'" &cnn_ikh(i)& "',"
elseif i = ubound(cnn_ikh) then
ora = ora & "'" & cnn_ikh(i) & "' "
else
ora = ora &"'" & cnn_ikh(i) & "',"
end if
next
parameter = ora
call ora_login(parameter)
Is there a way to call an ASP function when I click on a button, without submitting the form ?
View Replies View RelatedI would like to call a C function (Unix server) from a dll (VB) based on a Windows server (ASP - II5). Is it possible? If yes, can you show me how to do it?
View Replies View RelatedI have a class. I create an instance of this class in Page_Load event. Somewhere in the page I'd like to execute an a function (public) member of this class. This function return a string. How can I call this function ?
View Replies View Relatedtrying to do an asp page for downloading contents. i want to update into database,while user click for download.
i coded like this
<a herf="filepath" >download</a>
i want to cal a update function while cilick on dat link. Now i coded the updation in dat page itself.so whenver the page visted,the database upadting,even the user click didn't click on dat link.
I am writing a web page using ASP. I have an html form when submitted the data is validated using a javascript function. BAsed on the results from the data validater is it possilbe to call a function within that same page instead of calling another URL using the Form Action statement? Or can the form action point to another .asp program, perform the logic within that program but not actually load the page
I need to load some data into our oracle database after the data is validated and am not familiar with using javascript to do this. I already have code within my program that does the database call which I would like to use.
instead of linking to say a page from some text, how can i call a function on click of the text instead?
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 Relatedi have use html below to call a function...but it seems not work. any idea about this?
<input type=button value=Submit id=Submit name="btnSubmit" onclick ="check_duplicate1()">
function check_duplicate()
dim cmd
cmd = " SELECT SERIAL_NO,ASSET_NO,BARCODE_ID FROM INST_TAB " &_
" WHERE SERIAL_NO = '" &SERIAL_NO& "' " &_
" AND BARCODE_ID = '" &BARCODE_ID& "' " &_
" AND ASSET_NO = '" &ASSET_NO& "' "
set rs = cn.execute(cmd)
if not rs.eof then
response.Write "Record Already Exist!!!"
else
response.Write "New Record Had Been Added"
end if
end function
Is it possible to call a function in another file from the Global.asa as you would with other ASP pages using the
<!--#include virtual="/includes/functions.asp"-->?
I need to access some functions from the Application_OnStart event, but can't seem to get it to work?
I am working on a webapp (asp + vbscript).I have a function call in my page (not through form). I want to avoid calling this function when the user hits refresh button.I found that I can do it in ASP.Net :
if not Page.IsPostBack then
callFunction()
end if
Can I do something like that in ASP. If yes, what is the ASP equivalent of the above code?
I have been using a product from the net which facilitates file uploading. It works great except for some reason I can not get the little window that pops up to accurately represent the file upload process. It just doesn't work. So, I began to think of a simple work around. If when the form is submitted, I call a javascript function which opens a small new window telling them their files are being uploaded.
It could have an animated gif if you will of a progress bar. Once the files are uploaded in the (asp) script I am using, I have a Response.Redirect Statement sending the person to another page. Before this redirect, could I not have a call to a javascript function that would close the small window automatically?
how to call jscript function from vbscript function. can we perform arithmetic operation in a vbscript like below one
<script type="text/vb" >
addition and subtraction
</script>
if it isn't possible then i am planning to call javascript function from above vbscript.
how 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?
what is the correct way to dynamically build a call to a function in asp? i have the name of the function i want to call in a dictionary object, this works to execute the function but the output_value variable does not get set.
functionString = d.Item("create_contract_function_name") 'set variable for
the create contract function name that was retrieved
functionString = "output_value = " & functionString & "(param1, param2)"
Execute functionString
i've been making a simple registration page. i got a quest , i need my page to check the form for mistakes (i check mistakes using javascript but it can be done by asp aswell)
and submit it to another page for deeper check, (the deeper check can only be done in asp since it needs to connect to the database) is this posible?
or if its posible to call a asp function on click it would be better. ps: if i get a link to a free asp script regis page, that would be best.
I'm trying to call multiple asp page just simply by clicking a button But could i do this method? or how could i pass the value from this page to another asp page.
It should be something like this:
<SCRIPT LANGUAGE='VBSCRIPT'>
<!--
function btnClick_onClick
document.form.action = "myform.asp?ID=" & document.form.txtfield.value
document.form.submit
End Function
-->
</SCRIPT> ...
I'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:
How do I write the code for a button that will call a function/procedure in ASP and delete all records in an array? Should I use a function or procedure? Anyone who would like to finish this code? Code:
View Replies View Relatedi have this.asp page:
<script type="text/vbscript">
Function myFunc(val1ok, val2ok)
' do something ok
myFunc = " return something ok"
End Function
</script>
<html>
<body>
<%
val1ok = something1
val2ok = something2
thenewVal = myFunc((val1ok), (val2ok))
%>
</body>
</html>
i want to call and use the returned value of Function myFunc(val1ok,
val2ok) ,without omitting the html script tags and replacing them in <% %>,
(My Question is:) How do i call a function defined in html script tags from asp page?
What's the difference between private and public functions in ASP? When should I use either?
I am using a simple guestbook /portal and i want script to send mail to the thread owner when someone reply his message.
this is the send message code ....
I want to write a dll using VB6/VC6 and used by ASP. Questions are:
1. what special requirements for the dll used by ASP?
2. after built dll, how to use it in ASP? Where I should
save the dll? Do I need to register the dll?
Any article/link related to my question? the sample code?
How to call VC++ DLL from ASP? Could any1 show me the way/coding step by step?
View Replies View RelatedI want to have a single script for sending emails, accessible from both
ASP pages in any virtual directory in our websites (all on the one
server), plus accessible from a number of WSH (windows scripting host
vbscript files) which are triggered by the web servers Scheduled tasks.
The script formats text and checks emails and so on.
Is this a candidate for a web service? if so, how would i write it? Is a
web service available from WSH?
We have a C++ DLL that we call from VB6 program. This is how we declare the DLL in VB6:
Declare Function RefSearch Lib "csearch32.dll" (ByVal path As String, ByVal findword As String, ByVal CaseSensitive As Integer) As Integer This is how we call the DLL in VB6:
hit = RefSearch(path, SearchStr1, ChkValue). Can I call this DLL in ASP and how ?
I have two .asp pages running under different IIS authentication methods..
The first page uses Windows Authentication and gets the Logged on User from
Request.ServerVariables("User_Logon")
The second page runs under different Domain credentials and can access the
ldap directory... so I want to call it like so..
user = request.servervariables("User_Logon")
then something like --
<%
call page2.asp?theuser=" & user"
%>
where page2 runs as 'anonymous' credentials... (and Logon_User is Null)
-------
If this can't be done can I write the information to a cookie and then read
it from the other asp? How would I do that?