Click here to Skip to main content
15,905,015 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi..
I am making one site in HTML and I need to call vb function from HTML.
is it possible to call the vb functions from HTML page?
if it is so, anyone tel me the way to call the vb functions from HTML.
Posted
Updated 13-Dec-10 3:01am
v3
Comments
Abdul Quader Mamun 13-Dec-10 13:04pm    
Not really.

Do you know VBScript for HTML?!

XML
<html>
<body>
<script type="text/vbscript">
Function greeting()
i=hour(time)
If i < 10 Then
  document.write("Good morning!")
Else
  document.write("Have a nice day!")
End If
End Function
</script>
</head>
<body onload="greeting()">
</body>
</html>


If not, try Google[^].
 
Share this answer
 
No. It is not possible to call a VB function from HTML Page.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900