I 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
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?
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
I 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?
I 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 ?
trying 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.
I 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:
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?
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)"
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:
I 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 ?