Hi
I am new to asp .net, I have some VB functions that I need to make public to all webpages in my application. My webhost does not allow me to upload .dlls, im not sure if this is an issue.
I have read many forum posts but none seem to answer my question.
Here are some basic example functions that i wish to use:
Public Function getdatetime()
Return FormatDateTime(DateTime.Now, DateFormat.ShortDate)
End Function
Public Function Get_SecurePath()
Return ""
End Function
Public Function GetQuickLinks()
Return ""
End Function
I wish to execute them directly from the webpage (if possible):
<% response.write(getquicklinks()) %>
Thanks B
I am new to asp .net, I have some VB functions that I need to make public to all webpages in my application. My webhost does not allow me to upload .dlls, im not sure if this is an issue.
I have read many forum posts but none seem to answer my question.
Here are some basic example functions that i wish to use:
Public Function getdatetime()
Return FormatDateTime(DateTime.Now, DateFormat.ShortDate)
End Function
Public Function Get_SecurePath()
Return ""
End Function
Public Function GetQuickLinks()
Return ""
End Function
I wish to execute them directly from the webpage (if possible):
<% response.write(getquicklinks()) %>
Thanks B