Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

asp and vb functions

Status
Not open for further replies.

thunderain

Programmer
Jan 10, 2002
40
CA
This is more of a question at this point

I am doing a program for a customer in asp/vbscript. The customer has a function in visual basic he wants us to use.

Is it possible to call a vb function up when you are using asp/vbscript?

Any suggestions on how?

Thank you
thunderain
 
vbscript and vb are very similiar to the point most vb scripts can be converted over to vbscript.

How exstensive is the vb function and what tasks do it perform?

[bomb]
I may not get it the 1st or 2nd time,
but how sweet that 15th time can be.
admin@onpntwebdesigns.com
 
Generally you can just remove the variable type assignments.

eg. VB:
private function foo(a as String, b as Integer, c as Boolean) As String

'function code here

end function

in vbscript:
private function foo(a, b, c)

'function code here

end function

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top